12345678910111213141516171819202122232425262728293031 |
- {
- "$schema": "https://biomejs.dev/schemas/1.6.1/schema.json",
- "organizeImports": {
- "enabled": true
- },
- "files": {
- "ignore": ["node_modules", "src/client/"]
- },
- "linter": {
- "enabled": true,
- "rules": {
- "recommended": true,
- "suspicious": {
- "noExplicitAny": "off",
- "noArrayIndexKey": "off"
- },
- "style": {
- "noNonNullAssertion": "off"
- }
- }
- },
- "formatter": {
- "indentStyle": "space"
- },
- "javascript": {
- "formatter": {
- "quoteStyle": "double",
- "semicolons": "asNeeded"
- }
- }
- }
|