@kayahr/oxlint-config 1.33.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.
Files changed (2) hide show
  1. package/.oxlintrc.json +12 -11
  2. package/package.json +4 -4
package/.oxlintrc.json CHANGED
@@ -36,14 +36,16 @@
36
36
  "unicorn"
37
37
  ],
38
38
  "rules": {
39
- "eslint/capitalized-comments": [
40
- "warn",
41
- "always",
42
- {
43
- "ignoreConsecutiveComments": true,
44
- "ignorePattern": "(cspell:|node:coverage )"
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
- "allow_single_extends": true
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
- // TODO Currently broken: https://github.com/oxc-project/oxc/issues/17968
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.33.0",
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": "9.7.0-bundle.1",
27
+ "@kayahr/cspell": "10.0.1-bundle.1",
28
28
  "@kayahr/npm-utils": "1.1.2",
29
- "@types/node": "25.9.1",
29
+ "@types/node": "25.9.2",
30
30
  "typescript": "6.0.3"
31
31
  },
32
32
  "dependencies": {
33
- "oxlint": "^1.66.0",
33
+ "oxlint": "^1.69.0",
34
34
  "oxlint-tsgolint": "^0.23.0"
35
35
  }
36
36
  }