fixbluesky/biome.json
2024-04-24 01:43:36 -04:00

31 lines
577 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.7.1/schema.json",
"organizeImports": {
"enabled": false
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"useTemplate": "warn",
"noNonNullAssertion": "warn"
},
"suspicious": {
"noExplicitAny": "off"
}
}
},
"formatter": {
"enabled": true,
"lineWidth": 72,
"indentStyle": "space",
"formatWithErrors": true,
"indentWidth": 2
},
"javascript": {
"formatter": {
"semicolons": "always"
}
}
}