E0223: missing semicolon after field
Class fields and TypeScript interface fields must end with either a semicolon
(;
) or a newline. It is a syntax error to omit the semicolon and write
something on the same line after the field:
To fix this error, write ;
to separate the fields:
Alternatively, put the fields on separate lines:
Introduced in quick-lint-js version 2.6.0.