chore: ⬆️ Upgrade dependencies

This commit is contained in:
Jesse Wierzbinski 2024-09-20 14:39:19 +02:00
parent ed26f7f243
commit 5622705136
No known key found for this signature in database
4 changed files with 90 additions and 93 deletions

View file

@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
"organizeImports": {
"enabled": true
},
@ -8,11 +8,19 @@
"rules": {
"all": true,
"correctness": {
"noNodejsModules": "off"
"noNodejsModules": "off",
"useImportExtensions": "off",
"noUnknownFunction": "off"
},
"complexity": {
"noExcessiveCognitiveComplexity": "off"
},
"suspicious": {
"noReactSpecificProps": "off"
},
"performance": {
"useTopLevelRegex": "off"
},
"style": {
"noDefaultExport": "off",
"noParameterProperties": "off",
@ -66,14 +74,7 @@
}
},
"nursery": {
"noDuplicateElseIf": "warn",
"noDuplicateJsonKeys": "warn",
"noEvolvingTypes": "warn",
"noYodaExpression": "warn",
"useConsistentBuiltinInstantiation": "warn",
"useErrorMessage": "warn",
"useImportExtensions": "off",
"useThrowNewError": "warn"
"noDuplicateElseIf": "warn"
}
}
},