Files
MemShellParty/web/biome.json
T

43 lines
856 B
JSON

{
"$schema": "https://biomejs.dev/schemas/2.1.3/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"includes": [
"**",
"!**/node_modules",
"!**/.next",
"!**/dist",
"!**/.turbo",
"!**/.source",
"!**/convex/_generated",
"!**/components/ui/**"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"includes": ["!**/test/snapshots/**/*"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noFallthroughSwitchClause": "off",
"noExplicitAny": "off"
}
}
},
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}