Skip to content

Commit

Permalink
Merge pull request #4210 from kokovtsev/fix/json-markdown-descriptions
Browse files Browse the repository at this point in the history
fix: enable markdown in JSON completion details
  • Loading branch information
hediet authored Dec 14, 2023
2 parents 5e5af01 + 12ff291 commit 2122b33
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/language/json/jsonWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ export class JSONWorker {
return resolvePath(base, relativePath);
}
},
schemaRequestService: createData.enableSchemaRequest ? defaultSchemaRequestService : undefined
schemaRequestService: createData.enableSchemaRequest
? defaultSchemaRequestService
: undefined,
clientCapabilities: jsonService.ClientCapabilities.LATEST
});
this._languageService.configure(this._languageSettings);
}
Expand Down

0 comments on commit 2122b33

Please sign in to comment.