Comparing version 4.1.0 to 4.1.1
Change Log | ||
=== | ||
v4.1.1 | ||
--- | ||
* [bugfix] `typedef` rule was showing false positive for `catch` clause (#1887) | ||
v4.1.0 | ||
@@ -5,0 +10,0 @@ --- |
@@ -196,3 +196,3 @@ /** | ||
}()); | ||
Linter.VERSION = "4.1.0"; | ||
Linter.VERSION = "4.1.1"; | ||
Linter.findConfiguration = configuration_1.findConfiguration; | ||
@@ -199,0 +199,0 @@ Linter.findConfigurationPath = configuration_1.findConfigurationPath; |
@@ -176,3 +176,3 @@ /** | ||
if (node.parent != null && node.parent.parent != null | ||
&& node.parent.parent.kind !== ts.SyntaxKind.CatchClause | ||
&& node.parent.kind !== ts.SyntaxKind.CatchClause | ||
&& node.parent.parent.kind !== ts.SyntaxKind.ForInStatement | ||
@@ -179,0 +179,0 @@ && node.parent.parent.kind !== ts.SyntaxKind.ForOfStatement) { |
{ | ||
"name": "tslint", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"description": "An extensible static analysis linter for the TypeScript language", | ||
@@ -5,0 +5,0 @@ "bin": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
860105