-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Description
While there is a recommended
preset (flat and legacy), there is no preset for using all
the rules.
This forces a manually configuration of all the rules, track manually rules addition/removal, and it makes eslint configuration longer than needed.
Could you please share why there is no all
preset?
Would you consider adding one?
The plugin currently offers a recommended
ruleset (both flat and legacy), which is helpful for most users. However, there is no equivalent preset that enables all available rules.
Why this matters
Without an all
preset, users who want to:
- enable all rules for stricter linting or testing
- catch new rules as they're added/removed
- or simply avoid piecemeal configuration
must manually maintain a list of every rule. This increases maintenance overhead, especially when new rules are added or deprecated over time.
Request
- Could you share any reasons why an
all
preset hasn't been included so far? - Would the team consider adding an
all
preset (similar to how some other ESLint plugins do)?
This would help users who want full rule coverage while still keeping configuration clean and up to date.
Thanks for your work on this plugin!