feat: update biome.json with JavaScript parser configuration and linter rule adjustments

Added support for `unsafeParameterDecoratorsEnabled` in JavaScript parser configuration. Modified linter rules to include a `correctness` section disabling `useHookAtTopLevel`. Simplified domain-specific linter configurations.
This commit is contained in:
Mathis HERRIOT
2026-01-08 15:28:28 +01:00
parent 65b7cba6b1
commit 382e39ebd0

View File

@@ -14,6 +14,11 @@
"indentStyle": "tab",
"indentWidth": 1
},
"javascript": {
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
},
"linter": {
"enabled": true,
"rules": {
@@ -23,11 +28,10 @@
},
"style": {
"useImportType": "off"
}
},
"domains": {
"next": "recommended",
"react": "recommended"
"correctness": {
"useHookAtTopLevel": "off"
}
}
},
"assist": {