38 lines
685 B
JSON
38 lines
685 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.6.1/schema.json",
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"files": {
|
|
"ignore": [
|
|
"node_modules",
|
|
"src/client/",
|
|
"src/routeTree.gen.ts",
|
|
"playwright.config.ts",
|
|
"playwright-report"
|
|
]
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"suspicious": {
|
|
"noExplicitAny": "off",
|
|
"noArrayIndexKey": "off"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "off"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"indentStyle": "space"
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
}
|
|
}
|