You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add `regexp` to the plugins section of your `.eslintrc` configuration file (you can omit the `eslint-plugin-` prefix)
49
-
and either use the recommended configuration or configure the rules you want:
49
+
and either use one of the two configurations available (`recommended` or `all`) or configure the rules you want:
50
50
51
51
### The recommended configuration
52
52
@@ -84,6 +84,11 @@ module.exports = {
84
84
}
85
85
```
86
86
87
+
### Using `"plugin:regexp/all"`
88
+
89
+
The `plugin:regexp/all` config enables all rules. It's meant for testing, not for production use because it changes with every minor and major version of the plugin. Use it at your own risk.
90
+
*See [https://github.com/ota-meshi/eslint-plugin-regexp/blob/master/lib/configs/all.ts](https://github.com/ota-meshi/eslint-plugin-regexp/blob/master/lib/configs/all.ts) for more details.*
Add `regexp` to the plugins section of your `.eslintrc` configuration file (you can omit the `eslint-plugin-` prefix)
21
-
and either use the recommended configuration or configure the rules you want:
21
+
and either use one of the two configurations available (`recommended` or `all`) or configure the rules you want:
22
22
23
23
### The recommended configuration
24
24
@@ -56,6 +56,11 @@ module.exports = {
56
56
}
57
57
```
58
58
59
+
### Using `"plugin:regexp/all"`
60
+
61
+
The `plugin:regexp/all` config enables all rules. It's meant for testing, not for production use because it changes with every minor and major version of the plugin. Use it at your own risk.
62
+
*See [https://github.com/ota-meshi/eslint-plugin-regexp/blob/master/lib/configs/all.ts](https://github.com/ota-meshi/eslint-plugin-regexp/blob/master/lib/configs/all.ts) for more details.*
63
+
59
64
<!--USAGE_SECTION_END-->
60
65
61
66
See [the rule list](../rules/README.md) to get the `rules` that this plugin provides.
0 commit comments