E0123: missing variable name
You can declare a variable with const
, let
, or var
. It is a syntax error
to use const
, let
(in some cases), or var
without mentioning a variable
name:
To fix this error, write a variable name:
Alternatively, remove the extra ,
:
Introduced in quick-lint-js version 0.2.0.