Files
Minikura/biome.json
2026-02-13 15:52:13 +07:00

63 lines
1.2 KiB
JSON

{
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": false,
"includes": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "**/*.json"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedVariables": "warn",
"noUnusedImports": "warn"
},
"style": {
"useConst": "warn"
},
"suspicious": {
"noExplicitAny": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"semicolons": "always",
"trailingCommas": "es5"
}
},
"overrides": [
{
"includes": [
"**/node_modules/**",
"**/dist/**",
"**/.next/**",
"**/build/**",
"**/coverage/**",
"**/generated/**",
"**/*.config.js",
"**/*.config.ts",
"**/bun.lockb"
],
"linter": {
"enabled": false
},
"formatter": {
"enabled": false
}
}
]
}