mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
46 lines
978 B
JSON
46 lines
978 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true,
|
|
"defaultBranch": "master"
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"suspicious": {
|
|
"noExplicitAny": "off"
|
|
},
|
|
"style": {
|
|
"useImportType": "off"
|
|
},
|
|
"recommended": true,
|
|
"a11y": {
|
|
"noSvgWithoutTitle": "off"
|
|
},
|
|
"correctness": {
|
|
"noUnusedVariables": "warn",
|
|
"noUnusedImports": "warn"
|
|
}
|
|
},
|
|
"ignore": ["node_modules", "tsconfig*", "dist", "components/ui/**"]
|
|
},
|
|
"formatter": {
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"enabled": true,
|
|
"lineWidth": 120,
|
|
"ignore": ["node_modules", "tsconfig*", "dist"]
|
|
},
|
|
"organizeImports": {
|
|
"enabled": true,
|
|
"ignore": ["node_modules", "dist", "components/ui/**"]
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double"
|
|
}
|
|
}
|
|
}
|