datamine/packages/config/biome.json
2024-04-19 00:27:20 -04:00

31 lines
577 B
JSON

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