E0101: missing body for do-while loop
do
-while
loops require a body, which must be a statement or {
}
surrounding a list of statements. It is a syntax error to omit the body of a
do
-while
loop:
To fix this error, write the body of the do
-while
loop:
Alternatively, remove the extraneous do
keyword:
Introduced in quick-lint-js version 0.2.0.