File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,6 @@ export interface JSONSchema {
4949 not ?: JSONSchemaRef ;
5050 // eslint-disable-next-line @typescript-eslint/no-explicit-any
5151 enum ?: any [ ] ;
52- // eslint-disable-next-line @typescript-eslint/no-explicit-any
53- enumMarkdown ?: any [ ] ;
5452 format ?: string ;
5553
5654 // schema draft 06
Original file line number Diff line number Diff line change @@ -123,8 +123,6 @@ export class YAMLHover {
123123 enumIdx = s . schema . enum . indexOf ( getNodeValue ( node ) ) ;
124124 if ( s . schema . markdownEnumDescriptions ) {
125125 markdownEnumDescriptions = s . schema . markdownEnumDescriptions ;
126- } else if ( s . schema . enumMarkdown ) {
127- markdownEnumDescriptions = s . schema . enumMarkdown ;
128126 } else if ( s . schema . enumDescriptions ) {
129127 markdownEnumDescriptions = s . schema . enumDescriptions . map ( this . toMarkdown , this ) ;
130128 } else {
You can’t perform that action at this time.
0 commit comments