@adbayb/stack 2.40.0-next-6537284 → 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 +1 -0
- package/dist/configs/oxlint.d.ts +1 -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
|
@@ -263,6 +263,7 @@ const config = defineConfig({
|
|
|
263
263
|
"sort-keys": "off", // Already supported by ESLint Perfectionist
|
|
264
264
|
"sort-vars": "off", // Already supported by ESLint Perfectionist
|
|
265
265
|
"strict-boolean-expressions": "off",
|
|
266
|
+
"typescript/ban-types": "off", // Deprecated
|
|
266
267
|
"typescript/consistent-return": "off",
|
|
267
268
|
"typescript/consistent-type-definitions": ["error", "type"],
|
|
268
269
|
"typescript/explicit-function-return-type": "off",
|
package/dist/configs/oxlint.d.ts
CHANGED
|
@@ -182,6 +182,7 @@ declare const config: {
|
|
|
182
182
|
"sort-keys": "off";
|
|
183
183
|
"sort-vars": "off";
|
|
184
184
|
"strict-boolean-expressions": "off";
|
|
185
|
+
"typescript/ban-types": "off";
|
|
185
186
|
"typescript/consistent-return": "off";
|
|
186
187
|
"typescript/consistent-type-definitions": ["error", "type"];
|
|
187
188
|
"typescript/explicit-function-return-type": "off";
|
package/dist/configs/oxlint.js
CHANGED
|
@@ -273,6 +273,7 @@ const config = defineConfig({
|
|
|
273
273
|
"sort-keys": "off",
|
|
274
274
|
"sort-vars": "off",
|
|
275
275
|
"strict-boolean-expressions": "off",
|
|
276
|
+
"typescript/ban-types": "off",
|
|
276
277
|
"typescript/consistent-return": "off",
|
|
277
278
|
"typescript/consistent-type-definitions": ["error", "type"],
|
|
278
279
|
"typescript/explicit-function-return-type": "off",
|
package/dist/index.js
CHANGED