headplane/biome.json

58 lines
933 B
JSON
Raw Normal View History

2024-12-31 10:30:14 +05:30
{
2025-08-19 17:52:26 -04:00
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
2024-12-31 10:30:14 +05:30
"vcs": {
"enabled": true,
2024-12-31 10:30:14 +05:30
"clientKind": "git",
2025-04-04 16:06:22 -04:00
"useIgnoreFile": true
2024-12-31 10:30:14 +05:30
},
"files": {
"ignoreUnknown": false,
"includes": [
"**",
"!app/wasm_exec.js",
"!.astro",
"!dist",
"!data",
"!upstream",
"!.react-router-backup",
"!.react-router"
]
2024-12-31 10:30:14 +05:30
},
"formatter": {
"enabled": true,
"indentStyle": "tab",
"lineWidth": 80,
"lineEnding": "lf"
},
2025-08-19 17:52:26 -04:00
"assist": {
"actions": {
"source": {
"organizeImports": "on",
"useSortedAttributes": "on"
}
}
2024-12-31 10:30:14 +05:30
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"style": {
"useImportType": "off",
"noNonNullAssertion": "off"
},
"correctness": {
"useExhaustiveDependencies": "off"
},
"suspicious": {
"noExplicitAny": "warn"
}
2024-12-31 10:30:14 +05:30
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"jsxQuoteStyle": "double"
}
}
}