-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.oxlintrc.json
More file actions
28 lines (28 loc) · 759 Bytes
/
Copy path.oxlintrc.json
File metadata and controls
28 lines (28 loc) · 759 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
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["typescript", "unicorn", "oxc", "node", "import", "jsdoc"],
"categories": {
"correctness": "error",
"restriction": "error",
"suspicious": "error",
"perf": "error",
"nursery": "warn"
},
"rules": {
"import/no-default-export": "off",
"import/no-relative-parent-imports": "off",
"node/no-process-env": "off",
"no-use-before-define": "off",
"oxc/no-async-await": "off",
"oxc/no-optional-chaining": "off",
"oxc/no-rest-spread-properties": "off",
"unicorn/import-style": "off",
"no-undefined": "off",
"no-top-level-await": "off"
},
"env": {
"builtin": true,
"node": true
},
"ignorePatterns": ["dist/"]
}