quick-lint/quick-lint-js

E0054 on abstract modifier after a decorator

Faithfinder opened this issue · 2 comments

Paste into web version:

@InterfaceType({
    resolveType: questionnaireTypeResolver,
})
abstract class QuestionnaireInterface {
    @Field()
    id!: string;

    @Field()
    title!: string;

    @Field(() => AssessmentType)
    type!: AssessmentType;
}

Thanks for reporting. I fixed this in Git commit 7796545. I will ship the fix in version 3.2.0.

Fix released in version 3.2.0.