@@ -8,6 +8,7 @@ interface Settings {
8
8
ignoreDefinitionFiles ?: boolean ;
9
9
configFile ?: string ;
10
10
disableNoUnusedVariableRule ?: boolean // support to enable/disable the workaround for https://github.com/Microsoft/TypeScript/issues/15344
11
+ supressWhileTypeErrorsPresent : boolean ;
11
12
}
12
13
13
14
//TODO we "steal"" an error code with a registered code fix. 2515 = implement inherited abstract class
@@ -303,6 +304,10 @@ function init(modules: { typescript: typeof ts_module }) {
303
304
proxy . getSemanticDiagnostics = ( fileName : string ) => {
304
305
const prior = oldLS . getSemanticDiagnostics ( fileName ) ;
305
306
307
+ if ( config . supressWhileTypeErrorsPresent && prior . length > 0 ) {
308
+ return prior ;
309
+ }
310
+
306
311
try {
307
312
info . project . projectService . logger . info ( `Computing tslint semantic diagnostics...` ) ;
308
313
if ( codeFixActions . has ( fileName ) ) {
@@ -368,7 +373,10 @@ function init(modules: { typescript: typeof ts_module }) {
368
373
369
374
proxy . getCodeFixesAtPosition = function ( fileName : string , start : number , end : number , errorCodes : number [ ] , formatOptions : ts . FormatCodeSettings ) : ts . CodeAction [ ] {
370
375
let prior = oldLS . getCodeFixesAtPosition ( fileName , start , end , errorCodes , formatOptions ) ;
371
-
376
+ if ( config . supressWhileTypeErrorsPresent && prior . length > 0 ) {
377
+ return prior ;
378
+ }
379
+
372
380
info . project . projectService . logger . info ( "tslint-language-service getCodeFixes " + errorCodes [ 0 ] ) ;
373
381
let documentFixes = codeFixActions . get ( fileName ) ;
374
382
@@ -406,4 +414,4 @@ namespace codefix {
406
414
errorCodes : number [ ] ;
407
415
getCodeActions ( context : any ) : ts . CodeAction [ ] | undefined ;
408
416
}
409
- }
417
+ }
0 commit comments