-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy path.oxlintrc.json
More file actions
27 lines (27 loc) · 792 Bytes
/
.oxlintrc.json
File metadata and controls
27 lines (27 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"categories": {
"suspicious": "warn",
"perf": "warn"
},
"plugins": ["import", "node", "vitest", "eslint", "typescript", "unicorn", "oxc"],
"rules": {
"no-unused-vars": [
"error",
{ "args": "none", "caughtErrors": "none", "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }
],
"no-control-regex": "off",
"no-underscore-dangle": ["warn", { "allow": ["__filename", "__dirname"] }],
"no-await-in-loop": "off",
"vitest/require-mock-type-parameters": "off",
"vitest/expect-expect": "off"
},
"ignorePatterns": [
"out/**",
"node_modules/**",
"tests/contents-data/**",
"tests/devicectl-data/**",
"tests/examples/**",
"tests/xcdevice-data/**"
]
}