eslint-config-gorgon 4.0.2 → 4.0.3
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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -643,7 +643,7 @@ var init = async (configs) => {
|
|
|
643
643
|
const reactHooksConfig = reactHooks.default || reactHooks;
|
|
644
644
|
reasonConfigs.push(
|
|
645
645
|
reactPluginConfig.configs.flat.recommended,
|
|
646
|
-
reactHooksConfig.configs
|
|
646
|
+
reactHooksConfig.configs.flat,
|
|
647
647
|
{
|
|
648
648
|
...reactPluginConfig.configs.flat["jsx-runtime"],
|
|
649
649
|
files: ["**/*.ts", "**/*.tsx", "**/*.jsx", "**/*.js"],
|
package/dist/index.js
CHANGED
|
@@ -629,7 +629,7 @@ var init = async (configs) => {
|
|
|
629
629
|
const reactHooksConfig = reactHooks.default || reactHooks;
|
|
630
630
|
reasonConfigs.push(
|
|
631
631
|
reactPluginConfig.configs.flat.recommended,
|
|
632
|
-
reactHooksConfig.configs
|
|
632
|
+
reactHooksConfig.configs.flat,
|
|
633
633
|
{
|
|
634
634
|
...reactPluginConfig.configs.flat["jsx-runtime"],
|
|
635
635
|
files: ["**/*.ts", "**/*.tsx", "**/*.jsx", "**/*.js"],
|