Files
movie-select/biome.json

33 lines
514 B
JSON

{
"$schema": "https://biomejs.dev/schemas/2.4.5/schema.json",
"files": {
"includes": ["src/**/*.ts", "src/**/*.tsx", "tests/**/*.ts"]
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"formatter": {
"indentStyle": "tab",
"lineWidth": 80
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"semicolons": "asNeeded"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"noNonNullAssertion": "off"
}
}
}
}