fix imports and adjust biome and linting configuration

remove unused `SecretSchema` import, adjust biome settings to modify linting behavior, and clean formatting in `slugify` and other functions.
This commit is contained in:
dswbx
2025-11-11 13:29:24 +01:00
parent 9ec31373e1
commit 3f55c0f2c5
4 changed files with 34 additions and 26 deletions

View File

@@ -1,6 +1,6 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.3/schema.json",
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"assist": { "actions": { "source": { "organizeImports": "off" } } },
"vcs": {
"defaultBranch": "main"
},
@@ -31,16 +31,15 @@
"files": {
"includes": [
"**",
"!**/node_modules",
"!**/node_modules",
"!**/.cache",
"!**/.wrangler",
"!**/build",
"!**/dist",
"!**/data.sqld",
"!**/data.sqld",
"!**/public",
"!**/.history"
"!!**/node_modules",
"!!**/.cache",
"!!**/.wrangler",
"!!**/build",
"!!**/dist",
"!!**/data.sqld",
"!!**/data.sqld",
"!!**/public",
"!!**/.history"
]
},
"linter": {
@@ -53,7 +52,13 @@
"useExhaustiveDependencies": "off",
"noUnreachable": "warn",
"noChildrenProp": "off",
"noSwitchDeclarations": "warn"
"noSwitchDeclarations": "warn",
"noUnusedVariables": {
"options": {
"ignoreRestSiblings": true
},
"level": "warn"
}
},
"complexity": {
"noUselessFragments": "warn",
@@ -68,7 +73,11 @@
"noArrayIndexKey": "off",
"noImplicitAnyLet": "warn",
"noConfusingVoidType": "off",
"noConsole": { "level": "warn", "options": { "allow": ["error"] } }
"noConsole": {
"level": "warn",
"options": { "allow": ["error", "info"] }
},
"noTsIgnore": "off"
},
"security": {
"noDangerouslySetInnerHtml": "off"