File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed
Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 11{
2- "env" : {
3- "es6" : true ,
4- "node" : true
5- },
6- "extends" : [
7- " eslint:recommended" ,
8- " plugin:@typescript-eslint/recommended" ,
9- " plugin:@typescript-eslint/recommended-type-checked"
10- ],
2+ "extends" : [" eslint:recommended" , " plugin:@typescript-eslint/recommended-type-checked" ],
113 "parserOptions" : {
12- "project" : " ./tsconfig.json "
4+ "project" : true
135 }
146}
Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ export class Converter {
319319 } )
320320 stream . on ( "error" , err => {
321321 dbg ( `input buffered stream error: ${ err . message } ` )
322- return reject ( err )
322+ reject ( err )
323323 } )
324324 } )
325325 } ,
@@ -496,7 +496,7 @@ export class Converter {
496496
497497 this . process . on ( "error" , err => {
498498 dbg ( `error: ${ err . message } ` )
499- return reject ( err )
499+ reject ( err )
500500 } )
501501
502502 this . process . on ( "exit" , ( code , signal ) => {
You can’t perform that action at this time.
0 commit comments