@kayahr/oxlint-config 1.7.0 → 1.9.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 +13 -1
  2. package/package.json +1 -1
package/.oxlintrc.json CHANGED
@@ -51,6 +51,7 @@
51
51
  "eslint/max-lines": "off",
52
52
  "eslint/max-lines-per-function": "off",
53
53
  "eslint/max-params": "off",
54
+ "eslint/new-cap": "off",
54
55
  "eslint/no-await-in-loop": "off",
55
56
  "eslint/no-bitwise": "off",
56
57
  "eslint/no-console": "off",
@@ -61,8 +62,10 @@
61
62
  "eslint/no-multi-assign": "off",
62
63
  "eslint/no-param-reassign": "off",
63
64
  "eslint/no-plusplus": "off",
65
+ "eslint/no-return-assign": "off",
64
66
  "eslint/no-ternary": "off",
65
67
  "eslint/no-undefined": "off",
68
+ "eslint/no-unused-vars": "off",
66
69
  "eslint/no-void": "off",
67
70
  "eslint/prefer-destructuring": "off",
68
71
  "eslint/radix": "off",
@@ -76,6 +79,7 @@
76
79
  "import/no-namespace": "off",
77
80
  "import/no-named-export": "off",
78
81
  "import/prefer-default-export": "off",
82
+ "import/unambiguous": "off",
79
83
  "sort-imports": ["error", {
80
84
  "ignoreCase": false,
81
85
  "ignoreDeclarationSort": true,
@@ -86,6 +90,7 @@
86
90
  "jsdoc/require-param": "off",
87
91
  "jsdoc/require-param-type": "off",
88
92
  "jsdoc/require-returns-type": "off",
93
+ "node/no-process-env": "off",
89
94
  "oxc/no-async-await": "off",
90
95
  "oxc/no-optional-chaining": "off",
91
96
  "oxc/no-reset-spread-properties": "off",
@@ -106,12 +111,13 @@
106
111
  "typescript/no-explicit-any": "off",
107
112
  "typescript/no-misused-spread": "off",
108
113
  "typescript/no-non-null-assertion": "off",
114
+ "typescript/no-this-alias": "off",
109
115
  "typescript/no-unsafe-type-assertion": "off",
110
116
  "typescript/no-wrapper-object-types": "off",
111
117
  "typescript/promise-function-async": "off",
112
118
  "typescript/restrict-template-expressions": "off",
113
119
  "typescript/unbound-method": "off",
114
- "unicorn/prefer-spread": "off",
120
+ "unicorn/consistent-function-scoping": "off",
115
121
  "unicorn/filename-case": [
116
122
  "warn",
117
123
  {
@@ -123,7 +129,11 @@
123
129
  "multipleFileExtensions": true
124
130
  }
125
131
  ],
132
+ "unicorn/no-array-for-each": "off",
133
+ "unicorn/no-array-method-this-argument": "off",
126
134
  "unicorn/no-array-reduce": "off",
135
+ "unicorn/no-array-reverse": "off",
136
+ "unicorn/no-array-sort": "off",
127
137
  "unicorn/no-await-expression-member": "off",
128
138
  "unicorn/no-instanceof-builtins": "off",
129
139
  "unicorn/no-null": "off",
@@ -132,7 +142,9 @@
132
142
  "unicorn/prefer-event-target": "off",
133
143
  "unicorn/prefer-node-protocol": "warn",
134
144
  "unicorn/prefer-number-properties": "off",
145
+ "unicorn/prefer-spread": "off",
135
146
  "unicorn/prefer-string-raw": "off",
147
+ "unicorn/require-array-join-separator": "off",
136
148
  "unicorn/switch-case-braces": "off",
137
149
  "unicorn/text-encoding-identifier-case": "off"
138
150
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kayahr/oxlint-config",
3
- "version": "1.7.0",
3
+ "version": "1.9.0",
4
4
  "description": "Shared oxlint config for @kayahr projects",
5
5
  "type": "module",
6
6
  "exports": "./.oxlintrc.json",