E0144: cannot export variable named keyword
An export
statement can export a list of classes, functions, and variables. It
is a syntax error to export something with the same name as a keyword:
To fix this error, use as
to name the export different from the declared
class, function, or variable, and ensure importers use the exported name:
Alternatively, fix the name of the export, and ensure importers use the fixed
name:
Introduced in quick-lint-js version 0.2.0.
Documentation for other errors