forked from web-infra-dev/rslint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.go
More file actions
22 lines (20 loc) · 858 Bytes
/
all.go
File metadata and controls
22 lines (20 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package jest
import (
"github.com/web-infra-dev/rslint/internal/plugins/jest/rules/no_disabled_tests"
"github.com/web-infra-dev/rslint/internal/plugins/jest/rules/no_focused_tests"
"github.com/web-infra-dev/rslint/internal/plugins/jest/rules/no_hooks"
"github.com/web-infra-dev/rslint/internal/plugins/jest/rules/no_test_prefixes"
"github.com/web-infra-dev/rslint/internal/plugins/jest/rules/prefer_strict_equal"
"github.com/web-infra-dev/rslint/internal/plugins/jest/rules/valid_describe_callback"
"github.com/web-infra-dev/rslint/internal/rule"
)
func GetAllRules() []rule.Rule {
return []rule.Rule{
no_disabled_tests.NoDisabledTestsRule,
no_focused_tests.NoFocusedTestsRule,
no_hooks.NoHooksRule,
no_test_prefixes.NoTestPrefixesRule,
prefer_strict_equal.PreferStrictEqualRule,
valid_describe_callback.ValidDescribeCallbackRule,
}
}