-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path.oxlintrc.json
More file actions
47 lines (47 loc) · 986 Bytes
/
Copy path.oxlintrc.json
File metadata and controls
47 lines (47 loc) · 986 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": [
"unicorn",
"typescript"
],
"categories": {
"correctness": "error",
"suspicious": "error"
},
"rules": {
"unicorn/no-new-array": "off",
"unicorn/consistent-function-scoping": "off",
"unicorn/no-array-sort": "off",
"no-shadow": "off",
"no-underscore-dangle": "off"
},
"env": {
"builtin": true
},
"ignorePatterns": [
"dist/**",
"playground/build/**",
"playground/dist/**",
"playground/.react-router/**",
"playground/.source/**",
"playground/public/**",
"reference/**",
"src/theme/builtin-themes.ts"
],
"overrides": [
{
"files": [
"src/app/index.ts",
"src/wasm/runtime.ts",
"src/renderer/**/*.ts",
"src/fonts/**/*.ts",
"src/input/**/*.ts",
"src/grid/**/*.ts",
"src/theme/ghostty.ts"
],
"plugins": [
"typescript"
]
}
]
}