Skip to content

Commit

Permalink
add missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Dec 2, 2024
1 parent 3394de5 commit 164c73e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/jsonCompletion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export class JSONCompletion {
documentation: this.fromMarkup(propertySchema.markdownDescription) || propertySchema.description || ''
};
if (propertySchema.completionDetail !== undefined) {
proposal.detail = propertySchema.completionDetail
proposal.detail = propertySchema.completionDetail;
}
if (propertySchema.suggestSortText !== undefined) {
proposal.sortText = propertySchema.suggestSortText;
Expand All @@ -267,7 +267,7 @@ export class JSONCompletion {
documentation: enumDescription || this.fromMarkup(schemaPropertyNames.markdownDescription) || schemaPropertyNames.description || ''
};
if (schemaPropertyNames.completionDetail !== undefined) {
proposal.detail = schemaPropertyNames.completionDetail
proposal.detail = schemaPropertyNames.completionDetail;
}
if (schemaPropertyNames.suggestSortText !== undefined) {
proposal.sortText = schemaPropertyNames.suggestSortText;
Expand Down

0 comments on commit 164c73e

Please sign in to comment.