-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy path.oxlintrc.json
More file actions
60 lines (60 loc) · 1.63 KB
/
Copy path.oxlintrc.json
File metadata and controls
60 lines (60 loc) · 1.63 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["typescript", "unicorn", "oxc"],
"categories": {
"correctness": "error"
},
"ignorePatterns": ["packages/cli/src/generated-commands.ts"],
"rules": {
"eslint/no-unused-vars": [
"error",
{
"args": "none",
"caughtErrors": "none"
}
]
},
"overrides": [
{
"files": ["**/*.raw.js"],
"rules": {
"eslint/no-constant-condition": "off",
"eslint/no-unassigned-vars": "off",
"eslint/no-unused-expressions": "off",
"eslint/no-unused-vars": "off",
"oxc/number-arg-out-of-range": "off",
"unicorn/no-thenable": "off"
}
},
{
"files": [
"integrations/marketo/webframe/src/webframe.ts",
"integrations/runkit/webframe/src/webframe.ts"
],
"rules": {
"eslint/no-unused-vars": "off"
}
},
{
"files": ["scripts/generate-commands.ts"],
"rules": {
"eslint/no-useless-escape": "off"
}
},
{
"files": ["packages/cli/postinstall.js"],
"rules": {
"eslint/no-unused-expressions": "off"
}
},
{
"files": ["integrations/bucket/src/schema.ts"],
"rules": {
"unicorn/no-useless-spread": "off"
}
}
],
"env": {
"builtin": true
}
}