@adbayb/stack 2.40.0-next-12e6e2d → 2.40.0-next-f1351a6
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
|
@@ -268,6 +268,7 @@ const config = defineConfig({
|
|
|
268
268
|
"perfectionist/sort-named-imports": "off", // Already supported by eslint/sort-imports
|
|
269
269
|
"prefer-named-capture-group": "off",
|
|
270
270
|
"prefer-readonly-parameter-types": "off",
|
|
271
|
+
"react/function-component-definition": "off",
|
|
271
272
|
"react/jsx-filename-extension": ["error", { extensions: ["jsx", "tsx"] }],
|
|
272
273
|
"react/jsx-max-depth": "off",
|
|
273
274
|
"react/jsx-no-literals": "off",
|
package/dist/configs/oxlint.d.ts
CHANGED
|
@@ -223,6 +223,7 @@ declare const config: {
|
|
|
223
223
|
"perfectionist/sort-named-imports": "off";
|
|
224
224
|
"prefer-named-capture-group": "off";
|
|
225
225
|
"prefer-readonly-parameter-types": "off";
|
|
226
|
+
"react/function-component-definition": "off";
|
|
226
227
|
"react/jsx-filename-extension": ["error", {
|
|
227
228
|
extensions: string[];
|
|
228
229
|
}];
|
package/dist/configs/oxlint.js
CHANGED
|
@@ -276,6 +276,7 @@ const config = defineConfig({
|
|
|
276
276
|
"perfectionist/sort-named-imports": "off",
|
|
277
277
|
"prefer-named-capture-group": "off",
|
|
278
278
|
"prefer-readonly-parameter-types": "off",
|
|
279
|
+
"react/function-component-definition": "off",
|
|
279
280
|
"react/jsx-filename-extension": ["error", { extensions: ["jsx", "tsx"] }],
|
|
280
281
|
"react/jsx-max-depth": "off",
|
|
281
282
|
"react/jsx-no-literals": "off",
|
package/dist/index.js
CHANGED