File tree Expand file tree Collapse file tree 3 files changed +36
-200
lines changed Expand file tree Collapse file tree 3 files changed +36
-200
lines changed Original file line number Diff line number Diff line change @@ -302,6 +302,10 @@ Used by: `vscode-json-languageservice`.
302
302
303
303
Used by: ` vscode-json-languageservice ` . See [ Documenting Enums] ( #documenting-enums ) for details.
304
304
305
+ ** ` markdownEnumDescriptions ` **
306
+
307
+ Used by: ` vscode-json-languageservice ` . See [ Documenting Enums] ( #documenting-enums ) for details.
308
+
305
309
** ` x-taplo ` **
306
310
307
311
Used by: ` tamasfe/taplo ` .
Original file line number Diff line number Diff line change @@ -467,7 +467,21 @@ async function ajvFactory(
467
467
/**
468
468
* Ditto, but with keywords (ex. "x-intellij-html-description")..
469
469
*/
470
- for ( const unknownKeyword of unknownKeywords ) {
470
+ for ( const unknownKeyword of unknownKeywords . concat ( [
471
+ 'allowTrailingCommas' ,
472
+ 'defaultSnippets' ,
473
+ 'markdownDescription' ,
474
+ 'enumDescriptions' ,
475
+ 'markdownEnumDescriptions' ,
476
+ 'x-taplo' ,
477
+ 'x-taplo-info' ,
478
+ 'x-tombi-toml-version' ,
479
+ 'x-tombi-array-values-order' ,
480
+ 'x-tombi-table-keys-order' ,
481
+ 'x-intellij-language-injection' ,
482
+ 'x-intellij-html-description' ,
483
+ 'x-intellij-enum-metadata' ,
484
+ ] ) ) {
471
485
ajv . addKeyword ( unknownKeyword )
472
486
}
473
487
You can’t perform that action at this time.
0 commit comments