@kayahr/oxlint-config 1.14.0 → 1.14.2

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