mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:30:45 -05:00
- Removes a test for a class that was removed - Changes the command for type checking from `lint:types` to `type-check` --------- Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
74 lines
1.7 KiB
JSON
74 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"files": {
|
|
"ignore": [
|
|
".editorconfig",
|
|
".git/*",
|
|
".pkg-cache/*",
|
|
"assets/database/*",
|
|
"build/*",
|
|
"node_modules/*",
|
|
"obj/*",
|
|
"tests/__cache__/*",
|
|
"tests/__coverage__/*",
|
|
"types/*",
|
|
"user/*"
|
|
]
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"suspicious": {
|
|
"noExplicitAny": "warn"
|
|
},
|
|
"style": {
|
|
"useImportType": "off"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"formatWithErrors": false,
|
|
"attributePosition": "auto",
|
|
"indentStyle": "space",
|
|
"indentWidth": 4,
|
|
"lineWidth": 120,
|
|
"lineEnding": "lf"
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"arrowParentheses": "always",
|
|
"bracketSameLine": false,
|
|
"bracketSpacing": true,
|
|
"jsxQuoteStyle": "double",
|
|
"quoteProperties": "asNeeded",
|
|
"semicolons": "always",
|
|
"trailingCommas": "all"
|
|
},
|
|
"parser": {
|
|
"unsafeParameterDecoratorsEnabled": true
|
|
}
|
|
},
|
|
"json": {
|
|
"formatter": {
|
|
"trailingCommas": "none"
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"include": ["tests/*"],
|
|
"linter": {
|
|
"rules": {
|
|
"suspicious": {
|
|
"noExplicitAny": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|