Add suggestions for no-unsafe-negation #12591
Labels
accepted
There is consensus among the team that this change meets the criteria for inclusion
archived due to age
This issue has been archived; please open a new issue for any further discussion
enhancement
This change enhances an existing feature of ESLint
rule
Relates to ESLint's core rules
It might be useful to have some Suggestions in the core rules, as a working example for rule plugins and a ready test for editor integrations? This rule looks to me like a place where suggestions make sense and should be simple enough to implement for the start.
What rule do you want to change?
no-unsafe-negation
Does this change cause the rule to produce more or fewer warnings?
same
How will the change be implemented? (New option, new default behavior, etc.)?
new default behavior
Please provide some example code that this change will affect:
What does the rule currently do for this code?
Just an error without the autofix. The fixer was recently removed in #12157 because it was changing behavior.
What will the rule do after it's changed?
An error with two suggestions.
The first suggestion would be to negate the whole relational expression. This changes behavior, but probably from a bug to the intended one (that's how the removed fixer was working):
The second suggestion would be to make the existing intended behavior explicit, by wrapping the negation in parentheses, which is a documented exception allowed by this rule and does not produce an error after the fix:
Does this make sense?
Are you willing to submit a pull request to implement this change?
Yes.
The text was updated successfully, but these errors were encountered: