E0145: cannot import variable named keyword
An import
statement can import a list of classes, functions, and variables. It
is a syntax error to import something with the same name as a keyword:
To fix this error, use as
to name the imported variable different from the
exported name:
Alternatively, change the name of the export, and ensure other importers use the new name:
Introduced in quick-lint-js version 0.2.0.