@kayahr/oxlint-config 1.32.0 → 1.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.oxlintrc.json +12 -11
- package/package.json +6 -6
package/.oxlintrc.json
CHANGED
|
@@ -36,14 +36,16 @@
|
|
|
36
36
|
"unicorn"
|
|
37
37
|
],
|
|
38
38
|
"rules": {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
39
|
+
// TODO Temporarily disabled because of https://github.com/oxc-project/oxc/issues/23122
|
|
40
|
+
"eslint/capitalized-comments": "off",
|
|
41
|
+
// "eslint/capitalized-comments": [
|
|
42
|
+
// "warn",
|
|
43
|
+
// "always",
|
|
44
|
+
// {
|
|
45
|
+
// "ignoreConsecutiveComments": true,
|
|
46
|
+
// "ignorePattern": "(cspell:|node:coverage )"
|
|
47
|
+
// }
|
|
48
|
+
// ],
|
|
47
49
|
"eslint/class-methods-use-this": "off",
|
|
48
50
|
"eslint/complexity": "off",
|
|
49
51
|
"eslint/default-case": "off",
|
|
@@ -167,7 +169,7 @@
|
|
|
167
169
|
"typescript/no-dynamic-delete": "off",
|
|
168
170
|
"typescript/no-empty-interface": [
|
|
169
171
|
"warn", {
|
|
170
|
-
"
|
|
172
|
+
"allowSingleExtends": true
|
|
171
173
|
}
|
|
172
174
|
],
|
|
173
175
|
"typescript/no-empty-object-type": "off",
|
|
@@ -180,8 +182,7 @@
|
|
|
180
182
|
"unicorn/prefer-event-target": "off",
|
|
181
183
|
"unicorn/prefer-node-protocol": "warn",
|
|
182
184
|
"unicorn/prefer-number-properties": "off",
|
|
183
|
-
|
|
184
|
-
"typescript/prefer-optional-chain": "off",
|
|
185
|
+
"typescript/prefer-optional-chain": "warn",
|
|
185
186
|
"unicorn/prefer-spread": "off",
|
|
186
187
|
"unicorn/prefer-string-raw": "off",
|
|
187
188
|
"unicorn/require-array-join-separator": "off",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kayahr/oxlint-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.34.0",
|
|
4
4
|
"description": "Shared oxlint config for @kayahr projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": "./.oxlintrc.json",
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
".oxlintrc.json"
|
|
25
25
|
],
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@kayahr/cspell": "
|
|
27
|
+
"@kayahr/cspell": "10.0.1-bundle.1",
|
|
28
28
|
"@kayahr/npm-utils": "1.1.2",
|
|
29
|
-
"@types/node": "25.
|
|
30
|
-
"typescript": "6.0.
|
|
29
|
+
"@types/node": "25.9.2",
|
|
30
|
+
"typescript": "6.0.3"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"oxlint": "^1.
|
|
34
|
-
"oxlint-tsgolint": "^0.
|
|
33
|
+
"oxlint": "^1.69.0",
|
|
34
|
+
"oxlint-tsgolint": "^0.23.0"
|
|
35
35
|
}
|
|
36
36
|
}
|