Replies: 1 comment 3 replies
-
You can achieve what you want by disabling the recommended rules. Is that correct? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
Currently the
linter.rules.all
option accepts a boolean:true
-> enable all rules (except nursery)false
-> don't enable all rules (default)It would be nice to instead have the option to enable or disable all rules as such:
"on"
-> enable all rules (except nursery)"off"
-> disable all rulesnot set
-> default (same as false in the current version)Use case
You want to disable all rules except some that you manually whitelist by setting them to
"warn"
or"error"
.Beta Was this translation helpful? Give feedback.
All reactions