Merge pull request #4210 from kokovtsev/fix/json-markdown-descriptions

fix: enable markdown in JSON completion details
This commit is contained in:
Henning Dieterichs 2023-12-14 11:20:43 +01:00 committed by GitHub
commit 2122b33813
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}