@kayahr/oxlint-config 1.13.1 → 1.14.1

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 +18 -8
  2. package/package.json +4 -4
package/.oxlintrc.json CHANGED
@@ -32,11 +32,17 @@
32
32
  "node",
33
33
  "oxc",
34
34
  "promise",
35
- "regex",
36
35
  "typescript",
37
36
  "unicorn"
38
37
  ],
39
38
  "rules": {
39
+ "eslint/capitalized-comments": [
40
+ "warn",
41
+ "always",
42
+ {
43
+ "ignoreConsecutiveComments": true
44
+ }
45
+ ],
40
46
  "eslint/class-methods-use-this": "off",
41
47
  "eslint/default-case": "off",
42
48
  "eslint/eqeqeq": [
@@ -53,6 +59,7 @@
53
59
  "eslint/max-lines": "off",
54
60
  "eslint/max-lines-per-function": "off",
55
61
  "eslint/max-params": "off",
62
+ "eslint/max-statements": "off",
56
63
  "eslint/new-cap": "off",
57
64
  "eslint/no-await-in-loop": "off",
58
65
  "eslint/no-bitwise": "off",
@@ -85,13 +92,15 @@
85
92
  "import/no-unassigned-import": "off",
86
93
  "import/prefer-default-export": "off",
87
94
  "import/unambiguous": "off",
88
- "sort-imports": ["error", {
89
- "ignoreCase": false,
90
- "ignoreDeclarationSort": true,
91
- "ignoreMemberSort": false,
92
- "memberSyntaxSortOrder": [ "none", "all", "multiple", "single" ],
93
- "allowSeparatedGroups": false
94
- }],
95
+ "sort-imports": [
96
+ "error", {
97
+ "ignoreCase": false,
98
+ "ignoreDeclarationSort": true,
99
+ "ignoreMemberSort": false,
100
+ "memberSyntaxSortOrder": [ "none", "all", "multiple", "single" ],
101
+ "allowSeparatedGroups": false
102
+ }
103
+ ],
95
104
  "jsdoc/require-param": "off",
96
105
  "jsdoc/require-param-type": "off",
97
106
  "jsdoc/require-returns-type": "off",
@@ -156,5 +165,6 @@
156
165
  "unicorn/require-array-join-separator": "off",
157
166
  "unicorn/switch-case-braces": "off",
158
167
  "unicorn/text-encoding-identifier-case": "off"
168
+
159
169
  }
160
170
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kayahr/oxlint-config",
3
- "version": "1.13.1",
3
+ "version": "1.14.1",
4
4
  "description": "Shared oxlint config for @kayahr projects",
5
5
  "type": "module",
6
6
  "exports": "./.oxlintrc.json",
@@ -24,11 +24,11 @@
24
24
  "devDependencies": {
25
25
  "@kayahr/cspell": "9.3.2-bundle.1",
26
26
  "@kayahr/npm-utils": "1.1.1",
27
- "@types/node": "24.10.1",
27
+ "@types/node": "25.0.3",
28
28
  "typescript": "5.9.3"
29
29
  },
30
30
  "dependencies": {
31
- "oxlint": "^1.30.0",
32
- "oxlint-tsgolint": "^0.8.3"
31
+ "oxlint": "^1.36.0",
32
+ "oxlint-tsgolint": "^0.10.1"
33
33
  }
34
34
  }