52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
"javascript": {
|
|
"parser": {
|
|
"unsafeParameterDecoratorsEnabled": true
|
|
}
|
|
},
|
|
"organizeImports": {
|
|
"enabled": false
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"style": {
|
|
"noImplicitBoolean": "off",
|
|
"noParameterAssign": "warn",
|
|
"useTemplate": "warn",
|
|
"useSingleVarDeclarator": "warn"
|
|
},
|
|
"a11y": {
|
|
"useKeyWithClickEvents": "off",
|
|
"useValidAnchor": "warn"
|
|
},
|
|
"suspicious": {
|
|
"noExplicitAny": "off",
|
|
"noDoubleEquals": "warn",
|
|
"noShadowRestrictedNames": "warn",
|
|
"noEmptyInterface":"off"
|
|
},
|
|
"performance": {
|
|
"noDelete": "off"
|
|
},
|
|
"correctness": {
|
|
"noUnnecessaryContinue": "warn"
|
|
},
|
|
"complexity": {
|
|
"noStaticOnlyClass": "off",
|
|
"useSimplifiedLogicExpression": "warn",
|
|
"useOptionalChain": "warn"
|
|
}
|
|
},
|
|
"ignore": [
|
|
"**/*.js",
|
|
"**/*.json",
|
|
"**/*.mjs",
|
|
"**/Dockerfile.*",
|
|
"**/node_modules/**/*"
|
|
]
|
|
}
|
|
}
|