E0139: missing condition for while statement
A while
statement has a condition which determines whether the body will
execute or not. It is an error to omit a while
statement's condition:
To fix this error, write the condition with parentheses after the if
keyword:
Alternatively, to write an infinite loop, write for (;;)
instead of while
:
Introduced in quick-lint-js version 0.2.0.
Documentation for other errors