@adbayb/stack 2.40.0-next-774cb85 → 2.40.0-next-6537284
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 +3 -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
|
@@ -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",
|
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";
|
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",
|
package/dist/index.js
CHANGED