diff --git a/cli/lib/configProject.ts b/cli/lib/configProject.ts index 7dabff1..c2fae7b 100644 --- a/cli/lib/configProject.ts +++ b/cli/lib/configProject.ts @@ -42,6 +42,7 @@ const gitignore = ` # generated files **/*.g.ts +**/*.g.d.ts **/.codegen/**/* **/*.tsbuildinfo diff --git a/configs/biome.jsonc b/configs/biome.jsonc index 0a10f19..adc3616 100644 --- a/configs/biome.jsonc +++ b/configs/biome.jsonc @@ -3,7 +3,7 @@ "organizeImports": { "enabled": true }, "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, - "files": { "ignore": ["**/*.g.ts"] }, + "files": { "ignore": ["**/*.g.ts", "**/*.g.d.ts", "**/*.css"] }, "formatter": { "enabled": true, @@ -33,7 +33,7 @@ "noExcessiveCognitiveComplexity": "off" }, "suspicious": { - "useAwait": "error", + "useAwait": "off", "noConsole": "off", "noConsoleLog": "off", "noEmptyBlock": "off", @@ -64,7 +64,8 @@ "noNodejsModules": "off", "noUnusedVariables": "off", "useImportExtensions": "error", - "noUndeclaredVariables": "off" + "noUndeclaredVariables": "off", + "noUndeclaredDependencies": "off" }, "nursery": { "useSortedClasses": "error" } }