-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathoxlintrc.json
More file actions
31 lines (31 loc) · 1022 Bytes
/
oxlintrc.json
File metadata and controls
31 lines (31 loc) · 1022 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
28
29
30
31
{
"env": {
"browser": true
},
"settings": {},
"plugins": ["nursery", "typescript-eslint"],
"rules": {
"import/no-cycle": ["warn", { "maxDepth": 2 }],
"react-perf/jsx-no-new-function-as-prop": "off",
"react-perf/jsx-no-new-array-as-prop": "off",
"react-perf/jsx-no-new-object-as-prop": "off",
"react-perf/jsx-no-jsx-as-prop": "off",
"import/max-dependencies": "off",
"import/no-default-export": "off",
"jsx-a11y/label-has-associated-control": "off",
"unicorn/prefer-type-error": "off",
"unicorn/switch-case-braces": "off",
"unicorn/no-array-reduce": "off",
"default-case": "off",
"func-names": "off",
"no-undefined": "off",
"no-null": "off",
"no-unexpected-multiline": "off",
"max-classes-per-file": "off",
"consistent-type-imports": "warn",
"typescript/no-unsafe-function-type": "error",
"typescript/no-wrapper-object-types": "error",
"typescript/no-unsafe-declaration-merging": "error",
"no-unused-vars": "error"
}
}