File tree Expand file tree Collapse file tree
src/vs/workbench/contrib/tasks/common Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ const schema: IJSONSchema = {
4444 type : 'array' ,
4545 items : {
4646 anyOf : [
47- Schemas . LegacyProblemMatcher ,
4847 {
4948 type : 'string' ,
50- }
49+ } ,
50+ Schemas . LegacyProblemMatcher
5151 ]
5252 }
5353 }
Original file line number Diff line number Diff line change @@ -569,7 +569,7 @@ export function updateProblemMatchers() {
569569 try {
570570 let matcherIds = ProblemMatcherRegistry . keys ( ) . map ( key => '$' + key ) ;
571571 definitions . problemMatcherType2 . oneOf ! [ 0 ] . enum = matcherIds ;
572- ( definitions . problemMatcherType2 . oneOf ! [ 2 ] . items as IJSONSchema ) . anyOf ! [ 1 ] . enum = matcherIds ;
572+ ( definitions . problemMatcherType2 . oneOf ! [ 2 ] . items as IJSONSchema ) . anyOf ! [ 0 ] . enum = matcherIds ;
573573 } catch ( err ) {
574574 console . log ( 'Installing problem matcher ids failed' ) ;
575575 }
You can’t perform that action at this time.
0 commit comments