-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.oxlintrc.json
More file actions
48 lines (48 loc) · 1.1 KB
/
.oxlintrc.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": [
"import",
"typescript",
"unicorn",
"react",
"oxc",
"vue"
],
"categories": {
"correctness": "error",
"suspicious": "warn",
"perf": "warn",
"style": "off",
"pedantic": "off",
"restriction": "off"
},
"rules": {
"typescript/no-floating-promises": "error",
"typescript/no-unsafe-assignment": "error",
"typescript/no-unsafe-call": "error",
"typescript/no-unsafe-member-access": "error",
"typescript/no-unsafe-return": "error",
"vue/no-unused-refs": "error",
"vue/no-ref-as-operand": "error",
"vue/require-v-for-key": "error",
"vue/valid-v-for": "error",
"vue/valid-v-model": "error",
"vue/no-multiple-template-root": "error",
"vue/no-use-v-if-with-v-for": "warn",
"import/no-unassigned-import": "off"
},
"env": {
"browser": true,
"es2024": true,
"node": true
},
"globals": {},
"ignorePatterns": [
"**/node_modules/**",
"**/dist/**",
"**/build/**",
"**/.git/**",
"**/*.d.ts"
],
"settings": {}
}