@adbayb/stack 2.40.0-next-e8925e5 → 2.40.0-next-123ec23
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.
- package/configs/oxlint/index.ts +2 -0
- package/dist/configs/oxlint.d.ts +2 -0
- package/dist/configs/oxlint.js +2 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/configs/oxlint/index.ts
CHANGED
|
@@ -261,6 +261,7 @@ const config = defineConfig({
|
|
|
261
261
|
"no-undefined": "off",
|
|
262
262
|
"no-underscore-dangle": "off",
|
|
263
263
|
"no-use-before-define": "off",
|
|
264
|
+
"no-useless-return": "off",
|
|
264
265
|
"no-void": "off",
|
|
265
266
|
"no-warning-comments": "off",
|
|
266
267
|
"node/no-process-env": "off",
|
|
@@ -299,6 +300,7 @@ const config = defineConfig({
|
|
|
299
300
|
"unicorn/import-style": "off",
|
|
300
301
|
"unicorn/no-array-for-each": "off",
|
|
301
302
|
"unicorn/no-array-reduce": "off",
|
|
303
|
+
"unicorn/no-useless-switch-case": "off",
|
|
302
304
|
"unicorn/no-useless-undefined": "off",
|
|
303
305
|
},
|
|
304
306
|
});
|
package/dist/configs/oxlint.d.ts
CHANGED
|
@@ -219,6 +219,7 @@ declare const config: {
|
|
|
219
219
|
"no-undefined": "off";
|
|
220
220
|
"no-underscore-dangle": "off";
|
|
221
221
|
"no-use-before-define": "off";
|
|
222
|
+
"no-useless-return": "off";
|
|
222
223
|
"no-void": "off";
|
|
223
224
|
"no-warning-comments": "off";
|
|
224
225
|
"node/no-process-env": "off";
|
|
@@ -261,6 +262,7 @@ declare const config: {
|
|
|
261
262
|
"unicorn/import-style": "off";
|
|
262
263
|
"unicorn/no-array-for-each": "off";
|
|
263
264
|
"unicorn/no-array-reduce": "off";
|
|
265
|
+
"unicorn/no-useless-switch-case": "off";
|
|
264
266
|
"unicorn/no-useless-undefined": "off";
|
|
265
267
|
};
|
|
266
268
|
};
|
package/dist/configs/oxlint.js
CHANGED
|
@@ -269,6 +269,7 @@ const config = defineConfig({
|
|
|
269
269
|
"no-undefined": "off",
|
|
270
270
|
"no-underscore-dangle": "off",
|
|
271
271
|
"no-use-before-define": "off",
|
|
272
|
+
"no-useless-return": "off",
|
|
272
273
|
"no-void": "off",
|
|
273
274
|
"no-warning-comments": "off",
|
|
274
275
|
"node/no-process-env": "off",
|
|
@@ -307,6 +308,7 @@ const config = defineConfig({
|
|
|
307
308
|
"unicorn/import-style": "off",
|
|
308
309
|
"unicorn/no-array-for-each": "off",
|
|
309
310
|
"unicorn/no-array-reduce": "off",
|
|
311
|
+
"unicorn/no-useless-switch-case": "off",
|
|
310
312
|
"unicorn/no-useless-undefined": "off"
|
|
311
313
|
}
|
|
312
314
|
});
|
package/dist/index.js
CHANGED