Skip to content

Commit 4f1a491

Browse files
committed
Add documentation for error supression option
1 parent 724f17f commit 4f1a491

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
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
}

0 commit comments

Comments
 (0)