-
Notifications
You must be signed in to change notification settings - Fork 739
Expand file tree
/
Copy path.oxlintrc.json
More file actions
101 lines (101 loc) · 3.69 KB
/
Copy path.oxlintrc.json
File metadata and controls
101 lines (101 loc) · 3.69 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"ignorePatterns": [".agents/skills/**", "apps/web/components/ui/**"],
"rules": {
"arrow-body-style": "off",
"complexity": "off",
"curly": "off",
"default-case": "off",
"eqeqeq": "off",
"func-names": "off",
"func-style": "off",
"import/consistent-type-specifier-style": "off",
"max-lines": "off",
"class-methods-use-this": "off",
"no-accumulating-spread": "off",
"no-alert": "off",
"no-bitwise": "off",
"no-console": "off",
"no-else-return": "off",
"no-empty-function": "off",
"no-eq-null": "off",
"no-inline-comments": "off",
"no-lonely-if": "off",
"no-negated-condition": "off",
"no-promise-executor-return": "off",
"no-shadow": "off",
"no-nested-ternary": "off",
"no-plusplus": "off",
"no-throw-literal": "off",
"no-unmodified-loop-condition": "off",
"no-use-before-define": "off",
"no-useless-constructor": "off",
"no-void": "off",
"no-warning-comments": "off",
"prefer-const": "off",
"prefer-destructuring": "off",
"prefer-object-spread": "off",
"prefer-template": "off",
"promise/avoid-new": "off",
"promise/no-nesting": "off",
"promise/no-promise-in-callback": "off",
"promise/prefer-await-to-callbacks": "off",
"promise/prefer-await-to-then": "off",
"react/exhaustive-deps": "warn",
"react/jsx-curly-brace-presence": "off",
"react/jsx-no-constructed-context-values": "off",
"react/jsx-no-useless-fragment": "off",
"react/no-array-index-key": "off",
"react/no-danger": "off",
"react/rules-of-hooks": "error",
"react-perf/jsx-no-new-function-as-prop": "off",
"require-await": "off",
"sort-keys": "off",
"typescript/array-type": "off",
"typescript/consistent-type-definitions": "off",
"typescript/consistent-type-imports": "off",
"typescript/no-dynamic-delete": "off",
"typescript/no-explicit-any": "error",
"typescript/no-import-type-side-effects": "off",
"typescript/no-inferrable-types": "off",
"typescript/no-non-null-assertion": "off",
"typescript/parameter-properties": "off",
"unicorn/catch-error-name": "off",
"unicorn/no-array-for-each": "off",
"unicorn/consistent-existence-index-check": "off",
"unicorn/consistent-function-scoping": "off",
"unicorn/no-array-reduce": "off",
"unicorn/no-array-sort": "off",
"unicorn/no-await-expression-member": "off",
"unicorn/no-hex-escape": "off",
"unicorn/no-lonely-if": "off",
"unicorn/no-nested-ternary": "off",
"unicorn/no-typeof-undefined": "off",
"unicorn/no-useless-undefined": "off",
"unicorn/number-literal-case": "off",
"unicorn/numeric-separators-style": "off",
"unicorn/prefer-at": "off",
"unicorn/prefer-code-point": "off",
"unicorn/prefer-negative-index": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-number-properties": "off",
"unicorn/prefer-set-has": "off",
"unicorn/prefer-spread": "off",
"unicorn/prefer-string-replace-all": "off",
"unicorn/prefer-dom-node-append": "off",
"unicorn/prefer-logical-operator-over-ternary": "off",
"unicorn/prefer-math-min-max": "off",
"unicorn/prefer-math-trunc": "off",
"unicorn/prefer-response-static-json": "off",
"unicorn/prefer-string-slice": "off",
"unicorn/prefer-ternary": "off",
"unicorn/prefer-type-error": "off",
"unicorn/switch-case-braces": "off",
"unicorn/text-encoding-identifier-case": "off"
},
"extends": [
"./node_modules/ultracite/config/oxlint/core/.oxlintrc.json",
"./node_modules/ultracite/config/oxlint/react/.oxlintrc.json",
"./node_modules/ultracite/config/oxlint/next/.oxlintrc.json"
]
}