biome.json•911 B
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"includes": ["**", "!dist/**/*", "!**/pages.gen.ts"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"lineWidth": 120
},
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noUnusedTemplateLiteral": "off"
},
"suspicious": {
"noExplicitAny": "off"
},
"a11y": {},
"correctness": {
"useExhaustiveDependencies": "off",
"noUnusedImports": "info"
},
"security": {
"noBlankTarget": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single"
}
}
}