Skip to content

Commit

Permalink
chore: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
FRSgit committed Dec 25, 2024
1 parent 3376845 commit d907827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/prefer-class-fields.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const addOrReplaceClassFieldDeclaration = (
if (alreadyExistingDeclaration) {
return fixer.replaceText(
alreadyExistingDeclaration,
`${propertyName} = ${propertyValue}`,
`${propertyName} = ${propertyValue};`,
);
}

Expand Down

0 comments on commit d907827

Please sign in to comment.