This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-07-13 18:50:38 +02:00

53 lines
1.4 KiB
JSON

{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"files": {
"includes": ["**", "!!**/dist", "!!**/node_modules"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 4
},
"linter": {
"enabled": true,
"domains": {
"project": "recommended"
},
"rules": {
"preset": "recommended",
"correctness": {
"noGlobalDirnameFilename": "error",
"noUndeclaredDependencies": "error",
"noUnusedImports": "error",
"noUnusedVariables": "error",
"useImportExtensions": {
"level": "error",
"options": {
"forceJsExtensions": true
}
}
},
"security": {
"noSecrets": "error"
},
"style": {
"noCommonJs": "error",
"useImportType": "error",
"useNodejsImportProtocol": "error"
},
"suspicious": {
"noExplicitAny": "error",
"noImportCycles": "error"
}
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}