Server/project/biome.json

69 lines
1.8 KiB
JSON
Raw Normal View History

2023-03-03 16:23:46 +01:00
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"javascript": {
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
},
"organizeImports": {
2023-11-10 17:29:56 +01:00
"enabled": true
},
2023-03-03 16:23:46 +01:00
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noImplicitBoolean": "off",
2023-07-09 21:17:00 +02:00
"noParameterAssign": "warn",
2023-03-03 16:23:46 +01:00
"useTemplate": "warn",
"useSingleVarDeclarator": "warn"
},
"a11y": {
"useKeyWithClickEvents": "off",
"useValidAnchor": "warn"
},
"suspicious": {
"noExplicitAny": "off",
"noDoubleEquals": "warn",
2023-07-15 11:43:09 +02:00
"noShadowRestrictedNames": "warn",
2023-11-10 17:29:56 +01:00
"noEmptyInterface": "off"
2023-03-03 16:23:46 +01:00
},
"performance": {
"noDelete": "off"
},
"correctness": {
"noUnnecessaryContinue": "warn"
},
"complexity": {
"noStaticOnlyClass": "off",
2023-03-03 16:23:46 +01:00
"useSimplifiedLogicExpression": "warn",
"useOptionalChain": "warn"
}
2023-11-10 17:29:56 +01:00
}
},
"formatter": {
"enabled": false
},
"files": {
2023-03-03 16:23:46 +01:00
"ignore": [
"**/*.js",
"**/*.json",
2023-11-10 17:29:56 +01:00
"**/*.d.ts",
"**/Dockerfile.*",
2023-11-10 17:29:56 +01:00
"**/.git/**/*",
"**/.vscode/**/*",
"**/node_modules/**/*",
"**/build/**/*",
"**/obj/**/*",
"**/dist/**/*",
"**/user/**/*",
"**/logs/**/*",
"**/assets/**/*",
"**/Aki_Data/**/*",
"**/types/**/*",
"**/tests/__cache__/**/*",
"**/tests/__coverage__/**/*"
2023-03-03 16:23:46 +01:00
]
2023-11-10 17:29:56 +01:00
}
}