E0052: unexpected '#'
In JavaScript, #
is used for private properties and for shebangs at the
beginning of a file (e.g. #!/usr/bin/env node
). (#
does not start a
comment.) It is an error to use #
anywhere else:
To fix this error, write the property's name after #
, and use //
for line
comments:
Introduced in quick-lint-js version 0.2.0.