chore: ⬆️ Upgrade dependencies

This commit is contained in:
Jesse Wierzbinski 2024-09-14 13:18:49 +02:00
parent cc54e95e92
commit 35dcf4d10e
No known key found for this signature in database
14 changed files with 62 additions and 63 deletions

View file

@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.1/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
"organizeImports": {
"enabled": true,
"ignore": ["node_modules/**/*", "dist/**/*", ".output", ".nuxt"]
@ -8,12 +8,17 @@
"enabled": true,
"rules": {
"all": true,
"suspicious": {
"noConsole": "off"
},
"correctness": {
"noNodejsModules": "off",
"noUndeclaredVariables": "off",
"useHookAtTopLevel": "off",
"noUnusedVariables": "off",
"noUnusedImports": "off"
"noUnusedImports": "off",
"noUndeclaredDependencies": "off",
"useImportExtensions": "off"
},
"complexity": {
"noExcessiveCognitiveComplexity": "off"
@ -57,14 +62,8 @@
}
},
"nursery": {
"noDuplicateElseIf": "warn",
"noDuplicateJsonKeys": "warn",
"noEvolvingTypes": "warn",
"noYodaExpression": "warn",
"useConsistentBuiltinInstantiation": "warn",
"useErrorMessage": "warn",
"useImportExtensions": "off",
"useThrowNewError": "warn"
"noDuplicateElseIf": "error",
"noCommonJs": "error"
}
},
"ignore": ["node_modules/**/*", "dist/**/*", ".output", ".nuxt"]