{ "$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"] } }