From 4595a42b85f1fc23340751433edc6a65d576c321 Mon Sep 17 00:00:00 2001 From: Jason Killian Date: Fri, 31 Mar 2017 17:59:21 -0400 Subject: [PATCH] Fix variableNameRule compiler error (#2456) --- src/rules/variableNameRule.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rules/variableNameRule.ts b/src/rules/variableNameRule.ts index 4733e2be884..db5ab8301c9 100644 --- a/src/rules/variableNameRule.ts +++ b/src/rules/variableNameRule.ts @@ -70,7 +70,7 @@ export class Rule extends Lint.Rules.AbstractRule { public static KEYWORD_FAILURE = "variable name clashes with keyword/type"; public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] { - return this.applyWithFunction(sourceFile, walk, parseOptions(this.ruleArguments)); + return this.applyWithFunction(sourceFile, walk, parseOptions(this.ruleArguments)); } }