-
Notifications
You must be signed in to change notification settings - Fork 23
Add config checkbox Ignore (Don't show UI warnings for) Fixable Rules
#260
Comments
This would bring tslint development closer to golang's glorious distraction-free development with |
It'd also be useful to have a checkbox to A blacklist of reasonably spammy rules could ship with |
Over in This process does require at least one lint job to run before fixable rules are ignored, but after that it is dynamic what rules are ignored. Is something like this possible with There is also an option that allows users to ignore any rule they specified, similar to your blacklist above. That should be blank though, this definitely shouldn't ship with a "default list". |
@Arcanemagus nice! I like the idea of a config checkbox |
Ignore (Don't show UI warnings for) Fixable Rules
Ignore (Don't show UI warnings for) Fixable Rules
Ignore (Don't show UI warnings for) Fixable Rules
Functionality like that depends on being able to determine the list of fixable rules though, which I don't know if |
Note also that in |
@Arcanemagus makes sense. I'm open to any solution that suppresses fixable/blacklist of annoying linter errors, to make Atom typescript development less distracting, similar to golang with auto If you're interested to propose a specific design for a solution, I'm happy to fund a gitcoin bounty for somebody to execute that design. |
I use tslint with "run fix on save"; the tslint rule quotemark is useful, but having it show up as a linter error in Atom/Nuclide diagnostics is prohibitively distracting for me. I'd rather have it silently fixed. One way to achieve this is to have an editor-defined blacklist of rules that can still be fixed, but don't show up in UI diagnostics.
Eg. if
quotemark
is added to the blacklist, violations of that rule appear nowhere in the UI-- not in diagnostics list or inline.The text was updated successfully, but these errors were encountered: