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 {
49
49
not ?: JSONSchemaRef ;
50
50
// eslint-disable-next-line @typescript-eslint/no-explicit-any
51
51
enum ?: any [ ] ;
52
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
53
- enumMarkdown ?: any [ ] ;
54
52
format ?: string ;
55
53
56
54
// schema draft 06
Original file line number Diff line number Diff line change @@ -123,8 +123,6 @@ export class YAMLHover {
123
123
enumIdx = s . schema . enum . indexOf ( getNodeValue ( node ) ) ;
124
124
if ( s . schema . markdownEnumDescriptions ) {
125
125
markdownEnumDescriptions = s . schema . markdownEnumDescriptions ;
126
- } else if ( s . schema . enumMarkdown ) {
127
- markdownEnumDescriptions = s . schema . enumMarkdown ;
128
126
} else if ( s . schema . enumDescriptions ) {
129
127
markdownEnumDescriptions = s . schema . enumDescriptions . map ( this . toMarkdown , this ) ;
130
128
} else {
You can’t perform that action at this time.
0 commit comments