E0269: 'async static' is not allowed; write 'static async' instead
Class methods can have modifiers such as static
, async
, and *
. It is a
syntax error to write async static
in a class method declaration:
To fix this error, replace async static
with static async
:
Introduced in quick-lint-js version 0.3.0.
Documentation for other errors