E0099: missing semicolon between init and condition parts of for loop
C-style for
loops require two semicolons: one ;
between the init and the
condition, and one ;
between the condition and the update expression. It is a
syntax error to omit the ;
between the init and the condition:
To fix this error, insert a semicolon (;
) before the condition:
Introduced in quick-lint-js version 0.2.0.