Skip to content

Commit 2f43cc3

Browse files
committed
fix: issue introduced in version 1.52.7 where the react-hooks-extra rules were not exported, closes #1207
1 parent cb506c8 commit 2f43cc3

File tree

1 file changed

+1
-1
lines changed
  • packages/plugins/eslint-plugin/src

1 file changed

+1
-1
lines changed

packages/plugins/eslint-plugin/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const plugin: CompatiblePlugin = {
3939
...react.rules,
4040
...padKeysLeft(reactDom.rules, "dom/"),
4141
...padKeysLeft(reactWebApi.rules, "web-api/"),
42-
...padKeysLeft(reactHooksExtra, "hooks-extra/"),
42+
...padKeysLeft(reactHooksExtra.rules, "hooks-extra/"),
4343
...padKeysLeft(reactNamingConvention.rules, "naming-convention/"),
4444
...padKeysLeft(reactDebug.rules, "debug/"),
4545
},

0 commit comments

Comments
 (0)