{ "$schema": "https://biomejs.dev/schemas/2.5.1/schema.json", "vcs": { "enabled": false }, "files": { "includes": [ "**/*.ts", "**/*.js", "**/*.json", "**/*.jsonc", "**/*.css", "**/*.html", "!**/node_modules", "!**/dist" ] }, "formatter": { "enabled": true, "indentStyle": "space", "indentWidth": 2, "lineWidth": 100, "lineEnding": "lf" }, "linter": { "enabled": true, "rules": { "preset": "recommended", "style": { "useImportType": "warn", "useNodejsImportProtocol": "warn", "useTemplate": "off", "noNonNullAssertion": "off" }, "suspicious": { "noConsole": "off", "noExplicitAny": "off" }, "correctness": { "noUnusedVariables": "warn" } } }, "javascript": { "formatter": { "quoteStyle": "single", "semicolons": "always", "trailingCommas": "all", "arrowParentheses": "always" } }, "json": { "formatter": { "enabled": true, "indentWidth": 2 } }, "css": { "formatter": { "enabled": true, "quoteStyle": "single" } }, "overrides": [ { "includes": ["**/*.css"], "linter": { "rules": { "style": { "noDescendingSpecificity": "off" }, "suspicious": { "noDuplicateProperties": "off" } } } } ] }