koperasi/services/frontend/biome.json
2025-08-08 14:12:40 +07:00

39 lines
768 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.6.0/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true,
"defaultBranch": "main"
},
"organizeImports": {
"enabled": true
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": "error",
"noUnusedVariables": "warn",
"useExhaustiveDependencies": "warn"
},
"style": {
"noParameterAssign": "off"
},
"suspicious": {
"noArrayIndexKey": "off"
},
"nursery": {
"useSortedClasses": "warn"
}
}
}
}