-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy path.oxlintrc.json
More file actions
43 lines (42 loc) · 1.25 KB
/
Copy path.oxlintrc.json
File metadata and controls
43 lines (42 loc) · 1.25 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
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"ignorePatterns": [
"node_modules/**",
"dist/**",
".claude/**",
".codex/**",
".beads/**",
".agents/**",
".gemini/**",
"tools/oxlint/anti-slop/**"
],
"categories": {
"correctness": "off",
"suspicious": "off",
"pedantic": "off",
"perf": "off",
"style": "off",
"restriction": "off",
"nursery": "off"
},
"jsPlugins": [
{ "name": "anti-slop", "specifier": "./tools/oxlint/anti-slop/index.ts" }
],
"rules": {
"anti-slop/no-chained-type-assertions": "error",
"anti-slop/no-widen-then-assert": "error",
"anti-slop/no-unknown-type-aliases": "error",
"anti-slop/no-object-parameters": "error",
"anti-slop/no-reflect-apply": "error",
"anti-slop/no-reflect-get": "error",
"anti-slop/no-unknown-returns": "error",
"anti-slop/require-safety-comment-for-type-assertion": "off",
"anti-slop/no-runtime-typeof": "off",
"anti-slop/no-unsafe-dictionary-type": "off",
"anti-slop/no-unknown-parameters": "off",
"anti-slop/no-known-value-widening": "off",
"anti-slop/no-conditional-empty-object-spread": "off",
"anti-slop/no-shape-in-symbol-names": "off",
"anti-slop/no-module-mocking": "off"
}
}