mirror of
https://github.com/ae-utbm/sith.git
synced 2026-02-15 20:08:17 +00:00
44 lines
944 B
JSON
44 lines
944 B
JSON
{
|
|
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": false,
|
|
"includes": ["**/static/**"]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"lineWidth": 88
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"style": {
|
|
"useNamingConvention": "error"
|
|
},
|
|
"performance": {
|
|
"noNamespaceImport": "error"
|
|
},
|
|
"suspicious": {
|
|
"noConsole": {
|
|
"level": "error",
|
|
"options": { "allow": ["error", "warn"] }
|
|
}
|
|
},
|
|
"correctness": {
|
|
"noUnusedVariables": "error",
|
|
"noUndeclaredVariables": "error",
|
|
"noUndeclaredDependencies": "error"
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"globals": ["Alpine", "$", "jQuery", "gettext", "interpolate"]
|
|
}
|
|
}
|