E0232: 'readonly static' is not allowed; write 'static readonly' instead
The order of property specifiers like readonly
and static
matters. The
correct order is:
static
readonly
(TypeScript only)
It is a syntax error to write specifiers in the wrong order:
To fix this error, rearrange the specifiers:
Introduced in quick-lint-js version 2.6.0.