@adbayb/stack 2.40.0-next-774cb85 → 2.40.0-next-5ef9eef
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 +3 -0
- package/dist/configs/oxlint.d.ts +4 -0
- package/dist/configs/oxlint.js +3 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/configs/oxlint/index.ts
CHANGED
|
@@ -39,6 +39,7 @@ const config = defineConfig({
|
|
|
39
39
|
"vitest/consistent-test-it": ["error", { fn: "test", withinDescribe: "test" }],
|
|
40
40
|
"vitest/no-hooks": "off",
|
|
41
41
|
"vitest/no-importing-vitest-globals": "off",
|
|
42
|
+
"vitest/prefer-to-be-falsy": "off",
|
|
42
43
|
"vitest/prefer-to-be-truthy": "off",
|
|
43
44
|
"vitest/require-mock-type-parameters": "off",
|
|
44
45
|
"vitest/require-test-timeout": "off",
|
|
@@ -243,6 +244,7 @@ const config = defineConfig({
|
|
|
243
244
|
"no-warning-comments": "off",
|
|
244
245
|
"node/no-process-env": "off",
|
|
245
246
|
"node/no-sync": "off",
|
|
247
|
+
"oxc/no-async-endpoint-handlers": "off",
|
|
246
248
|
"perfectionist/sort-imports": "off", // Already supported by Oxfmt
|
|
247
249
|
"perfectionist/sort-named-imports": "off", // Already supported by eslint/sort-imports
|
|
248
250
|
"prefer-named-capture-group": "off",
|
|
@@ -261,6 +263,7 @@ const config = defineConfig({
|
|
|
261
263
|
"sort-keys": "off", // Already supported by ESLint Perfectionist
|
|
262
264
|
"sort-vars": "off", // Already supported by ESLint Perfectionist
|
|
263
265
|
"strict-boolean-expressions": "off",
|
|
266
|
+
"typescript/ban-types": "off", // Deprecated
|
|
264
267
|
"typescript/consistent-return": "off",
|
|
265
268
|
"typescript/consistent-type-definitions": ["error", "type"],
|
|
266
269
|
"typescript/explicit-function-return-type": "off",
|
package/dist/configs/oxlint.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ declare const config: {
|
|
|
29
29
|
}];
|
|
30
30
|
"vitest/no-hooks": "off";
|
|
31
31
|
"vitest/no-importing-vitest-globals": "off";
|
|
32
|
+
"vitest/prefer-to-be-falsy": "off";
|
|
32
33
|
"vitest/prefer-to-be-truthy": "off";
|
|
33
34
|
"vitest/require-mock-type-parameters": "off";
|
|
34
35
|
"vitest/require-test-timeout": "off";
|
|
@@ -53,6 +54,7 @@ declare const config: {
|
|
|
53
54
|
"vitest/consistent-test-it"?: never;
|
|
54
55
|
"vitest/no-hooks"?: never;
|
|
55
56
|
"vitest/no-importing-vitest-globals"?: never;
|
|
57
|
+
"vitest/prefer-to-be-falsy"?: never;
|
|
56
58
|
"vitest/prefer-to-be-truthy"?: never;
|
|
57
59
|
"vitest/require-mock-type-parameters"?: never;
|
|
58
60
|
"vitest/require-test-timeout"?: never;
|
|
@@ -159,6 +161,7 @@ declare const config: {
|
|
|
159
161
|
"no-warning-comments": "off";
|
|
160
162
|
"node/no-process-env": "off";
|
|
161
163
|
"node/no-sync": "off";
|
|
164
|
+
"oxc/no-async-endpoint-handlers": "off";
|
|
162
165
|
"perfectionist/sort-imports": "off";
|
|
163
166
|
"perfectionist/sort-named-imports": "off";
|
|
164
167
|
"prefer-named-capture-group": "off";
|
|
@@ -179,6 +182,7 @@ declare const config: {
|
|
|
179
182
|
"sort-keys": "off";
|
|
180
183
|
"sort-vars": "off";
|
|
181
184
|
"strict-boolean-expressions": "off";
|
|
185
|
+
"typescript/ban-types": "off";
|
|
182
186
|
"typescript/consistent-return": "off";
|
|
183
187
|
"typescript/consistent-type-definitions": ["error", "type"];
|
|
184
188
|
"typescript/explicit-function-return-type": "off";
|
package/dist/configs/oxlint.js
CHANGED
|
@@ -51,6 +51,7 @@ const config = defineConfig({
|
|
|
51
51
|
}],
|
|
52
52
|
"vitest/no-hooks": "off",
|
|
53
53
|
"vitest/no-importing-vitest-globals": "off",
|
|
54
|
+
"vitest/prefer-to-be-falsy": "off",
|
|
54
55
|
"vitest/prefer-to-be-truthy": "off",
|
|
55
56
|
"vitest/require-mock-type-parameters": "off",
|
|
56
57
|
"vitest/require-test-timeout": "off",
|
|
@@ -253,6 +254,7 @@ const config = defineConfig({
|
|
|
253
254
|
"no-warning-comments": "off",
|
|
254
255
|
"node/no-process-env": "off",
|
|
255
256
|
"node/no-sync": "off",
|
|
257
|
+
"oxc/no-async-endpoint-handlers": "off",
|
|
256
258
|
"perfectionist/sort-imports": "off",
|
|
257
259
|
"perfectionist/sort-named-imports": "off",
|
|
258
260
|
"prefer-named-capture-group": "off",
|
|
@@ -271,6 +273,7 @@ const config = defineConfig({
|
|
|
271
273
|
"sort-keys": "off",
|
|
272
274
|
"sort-vars": "off",
|
|
273
275
|
"strict-boolean-expressions": "off",
|
|
276
|
+
"typescript/ban-types": "off",
|
|
274
277
|
"typescript/consistent-return": "off",
|
|
275
278
|
"typescript/consistent-type-definitions": ["error", "type"],
|
|
276
279
|
"typescript/explicit-function-return-type": "off",
|
package/dist/index.js
CHANGED