Skip to content

Commit

Permalink
fix: cspell fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sshivaditya committed Aug 28, 2024
1 parent f325310 commit 736bea6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"ignorePaths": ["**/*.json", "**/*.css", "node_modules", "**/*.log", "./src/adapters/supabase/**/**.ts"],
"ignorePaths": ["**/*.json", "**/*.css", "node_modules", "**/*.log", "./src/adapters/supabase/**/**.ts", "./src/types/database.ts", "./supabase/config.toml"],
"useGitignore": true,
"language": "en",
"words": [
Expand All @@ -20,7 +20,9 @@
"Typeguards",
"sonarjs",
"knip",
"mischeck"
"mischeck",
"commentbody",
"issuebody"
],
"dictionaries": ["typescript", "node", "software-terms"],
"import": ["@cspell/dict-typescript/cspell-ext.json", "@cspell/dict-node/cspell-ext.json", "@cspell/dict-software-terms"],
Expand Down
4 changes: 1 addition & 3 deletions src/types/database.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// cSpell:disable

export type Json = string | number | boolean | null | { [key: string]: Json | undefined } | Json[];

export type Database = {
Expand Down Expand Up @@ -479,7 +477,7 @@ export type Database = {
Args: {
name: string;
};
Returns: unknown;
Returns: string[];
};
get_size_by_bucket: {
Args: Record<PropertyKey, never>;
Expand Down

0 comments on commit 736bea6

Please sign in to comment.