@kayahr/oxlint-config 1.14.0 → 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 -7
  2. package/package.json +1 -1
package/.oxlintrc.json CHANGED
@@ -36,6 +36,13 @@
36
36
  "unicorn"
37
37
  ],
38
38
  "rules": {
39
+ "eslint/capitalized-comments": [
40
+ "warn",
41
+ "always",
42
+ {
43
+ "ignoreConsecutiveComments": true
44
+ }
45
+ ],
39
46
  "eslint/class-methods-use-this": "off",
40
47
  "eslint/default-case": "off",
41
48
  "eslint/eqeqeq": [
@@ -52,6 +59,7 @@
52
59
  "eslint/max-lines": "off",
53
60
  "eslint/max-lines-per-function": "off",
54
61
  "eslint/max-params": "off",
62
+ "eslint/max-statements": "off",
55
63
  "eslint/new-cap": "off",
56
64
  "eslint/no-await-in-loop": "off",
57
65
  "eslint/no-bitwise": "off",
@@ -84,13 +92,15 @@
84
92
  "import/no-unassigned-import": "off",
85
93
  "import/prefer-default-export": "off",
86
94
  "import/unambiguous": "off",
87
- "sort-imports": ["error", {
88
- "ignoreCase": false,
89
- "ignoreDeclarationSort": true,
90
- "ignoreMemberSort": false,
91
- "memberSyntaxSortOrder": [ "none", "all", "multiple", "single" ],
92
- "allowSeparatedGroups": false
93
- }],
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
+ ],
94
104
  "jsdoc/require-param": "off",
95
105
  "jsdoc/require-param-type": "off",
96
106
  "jsdoc/require-returns-type": "off",
@@ -155,5 +165,6 @@
155
165
  "unicorn/require-array-join-separator": "off",
156
166
  "unicorn/switch-case-braces": "off",
157
167
  "unicorn/text-encoding-identifier-case": "off"
168
+
158
169
  }
159
170
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kayahr/oxlint-config",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "description": "Shared oxlint config for @kayahr projects",
5
5
  "type": "module",
6
6
  "exports": "./.oxlintrc.json",