-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy path.oxlintrc.json
More file actions
55 lines (55 loc) · 1.44 KB
/
Copy path.oxlintrc.json
File metadata and controls
55 lines (55 loc) · 1.44 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
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["typescript", "import", "node"],
"env": {
"node": true,
"es6": true
},
"categories": {
"correctness": "error"
},
"rules": {
"eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_",
"fix": { "imports": "safe-fix", "variables": "suggestion" },
"varsIgnorePattern": "^_"
}
],
"eslint/prefer-const": "error",
"eslint/no-useless-escape": "error",
"eslint/no-empty": ["error", { "allowEmptyCatch": true }],
"typescript/no-explicit-any": "off",
"typescript/only-throw-error": "off",
"typescript/no-var-requires": "error",
"import/no-duplicates": "error"
},
"overrides": [
{
"files": ["src/**/*.ts"],
"rules": {
"eslint/no-restricted-imports": [
"error",
{
"paths": [
{
"name": "node:child_process",
"message": "Use process helpers from src/utils/exec.ts instead of importing node:child_process directly."
}
]
}
]
}
},
{
"files": ["src/utils/exec.ts", "src/**/*.test.ts", "src/**/__tests__/**/*.ts"],
"rules": {
"eslint/no-restricted-imports": "off"
}
}
],
"ignorePatterns": ["dist/**", "node_modules/**"]
}