Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Fix variableNameRule compiler error (#2456)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkillian authored Mar 31, 2017
1 parent f03c1ad commit 4595a42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/variableNameRule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Options>(sourceFile, walk, parseOptions(this.ruleArguments));
return this.applyWithFunction(sourceFile, walk, parseOptions(this.ruleArguments));
}
}

Expand Down

0 comments on commit 4595a42

Please sign in to comment.