Skip to content

double-negation

Remove redundant double boolean negation.

Updated View as Markdown

Default severity: error

Negating a boolean twice produces the original value. The expression is either redundant or contains a mistaken extra !.

Bad

return !!ready

Good

return ready
Navigation

Type to search…

↑↓ navigate↵ selectEsc close