Skip to content

Commit 8879176

Browse files
authored
Merge pull request #51 from spion/feature/supress-while-type-errors-present
Feature: Supress linter errors while type errors present
2 parents 2f2001d + 4f1a491 commit 8879176

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Your `node_modules` folder should look like this:
4040
* `ignoreDefinitionFiles` - control if TypeScript definition files should be ignored.
4141
* `alwaysShowRuleFailuresAsWarnings` - always show rule failures as warnings, ignoring the severity configuration in the tslint.json configuration.
4242
* `disableNoUnusedVariableRule` - disable `no-unused-variable` rule.
43+
* `supressWhileTypeErrorsPresent` - supress tslint errors from being reported while other errors are present.
4344

4445
Here a configuration sample:
4546

@@ -51,7 +52,8 @@ Here a configuration sample:
5152
"alwaysShowRuleFailuresAsWarnings": false,
5253
"ignoreDefinitionFiles": true,
5354
"configFile": "../tslint.json",
54-
"disableNoUnusedVariableRule": false
55+
"disableNoUnusedVariableRule": false,
56+
"supressWhileTypeErrorsPresent": false
5557
}
5658
]
5759
}

src/index.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ interface Settings {
88
ignoreDefinitionFiles?: boolean;
99
configFile?: string;
1010
disableNoUnusedVariableRule?: boolean // support to enable/disable the workaround for https://github.com/Microsoft/TypeScript/issues/15344
11+
supressWhileTypeErrorsPresent: boolean;
1112
}
1213

1314
//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 }) {
303304
proxy.getSemanticDiagnostics = (fileName: string) => {
304305
const prior = oldLS.getSemanticDiagnostics(fileName);
305306

307+
if (config.supressWhileTypeErrorsPresent && prior.length > 0) {
308+
return prior;
309+
}
310+
306311
try {
307312
info.project.projectService.logger.info(`Computing tslint semantic diagnostics...`);
308313
if (codeFixActions.has(fileName)) {
@@ -368,7 +373,10 @@ function init(modules: { typescript: typeof ts_module }) {
368373

369374
proxy.getCodeFixesAtPosition = function (fileName: string, start: number, end: number, errorCodes: number[], formatOptions: ts.FormatCodeSettings): ts.CodeAction[] {
370375
let prior = oldLS.getCodeFixesAtPosition(fileName, start, end, errorCodes, formatOptions);
371-
376+
if (config.supressWhileTypeErrorsPresent && prior.length > 0) {
377+
return prior;
378+
}
379+
372380
info.project.projectService.logger.info("tslint-language-service getCodeFixes " + errorCodes[0]);
373381
let documentFixes = codeFixActions.get(fileName);
374382

@@ -406,4 +414,4 @@ namespace codefix {
406414
errorCodes: number[];
407415
getCodeActions(context: any): ts.CodeAction[] | undefined;
408416
}
409-
}
417+
}

0 commit comments

Comments
 (0)