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

fix: enable markdown in JSON completion details
pull/4304/head
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
1 changed files with 4 additions and 1 deletions

View File

@ -32,7 +32,10 @@ export class JSONWorker {
return resolvePath(base, relativePath); return resolvePath(base, relativePath);
} }
}, },
schemaRequestService: createData.enableSchemaRequest ? defaultSchemaRequestService : undefined schemaRequestService: createData.enableSchemaRequest
? defaultSchemaRequestService
: undefined,
clientCapabilities: jsonService.ClientCapabilities.LATEST
}); });
this._languageService.configure(this._languageSettings); this._languageService.configure(this._languageSettings);
} }