We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9b071f commit ac97206Copy full SHA for ac97206
internal/plugins/react_hooks/all.go
@@ -0,0 +1,12 @@
1
+package react_hooks_plugin
2
+
3
+import (
4
+ "github.com/web-infra-dev/rslint/internal/plugins/react_hooks/rules/rules_of_hooks"
5
+ "github.com/web-infra-dev/rslint/internal/rule"
6
+)
7
8
+func GetAllRules() []rule.Rule {
9
+ return []rule.Rule{
10
+ rules_of_hooks.RulesOfHooksRule,
11
+ }
12
+}
0 commit comments