Add setting to customize severity for fixable errors #227
Closed
OliverJAsh
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
|
Can you please provide a few reasons or valid use cases for this feature? Just because another tool has this option isn't a valid reason. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The ESLint VS Code extension allows you to customize the severity of all fixable lint errors with the following configuration:
{ "eslint.rules.customizations": [ { "rule": "*", "fixable": true, "severity": "info" } ] }It would be useful if Biome had something similar to this. In the absence of this we need to manually downgrade each rule like so:
{ "linter": { "enabled": true, "rules": { "recommended": true, "style": { + "useTemplate": "warn" } } } }Beta Was this translation helpful? Give feedback.
All reactions