@adbayb/stack 2.40.0-next-a52f45f → 2.40.0-next-12e6e2d
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 +1 -0
- package/dist/configs/oxlint.d.ts +3 -0
- package/dist/configs/oxlint.js +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/configs/oxlint/index.ts
CHANGED
|
@@ -262,6 +262,7 @@ const config = defineConfig({
|
|
|
262
262
|
"no-warning-comments": "off",
|
|
263
263
|
"node/no-process-env": "off",
|
|
264
264
|
"node/no-sync": "off",
|
|
265
|
+
"node/no-top-level-await": ["error", { ignoreBin: true }],
|
|
265
266
|
"oxc/no-async-endpoint-handlers": "off",
|
|
266
267
|
"perfectionist/sort-imports": "off", // Already supported by Oxfmt
|
|
267
268
|
"perfectionist/sort-named-imports": "off", // Already supported by eslint/sort-imports
|
package/dist/configs/oxlint.d.ts
CHANGED
|
@@ -215,6 +215,9 @@ declare const config: {
|
|
|
215
215
|
"no-warning-comments": "off";
|
|
216
216
|
"node/no-process-env": "off";
|
|
217
217
|
"node/no-sync": "off";
|
|
218
|
+
"node/no-top-level-await": ["error", {
|
|
219
|
+
ignoreBin: true;
|
|
220
|
+
}];
|
|
218
221
|
"oxc/no-async-endpoint-handlers": "off";
|
|
219
222
|
"perfectionist/sort-imports": "off";
|
|
220
223
|
"perfectionist/sort-named-imports": "off";
|
package/dist/configs/oxlint.js
CHANGED
|
@@ -270,6 +270,7 @@ const config = defineConfig({
|
|
|
270
270
|
"no-warning-comments": "off",
|
|
271
271
|
"node/no-process-env": "off",
|
|
272
272
|
"node/no-sync": "off",
|
|
273
|
+
"node/no-top-level-await": ["error", { ignoreBin: true }],
|
|
273
274
|
"oxc/no-async-endpoint-handlers": "off",
|
|
274
275
|
"perfectionist/sort-imports": "off",
|
|
275
276
|
"perfectionist/sort-named-imports": "off",
|
package/dist/index.js
CHANGED