Update booleanTriviaRule.ts

This commit is contained in:
Ryan Cavanaugh 2017-04-05 11:29:47 -07:00 committed by GitHub
parent 40393c59ea
commit 008cd89c0d

View File

@ -3,7 +3,6 @@ import * as ts from "typescript";
export class Rule extends Lint.Rules.AbstractRule {
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] {
// Cheat to get type checker
return this.applyWithFunction(sourceFile, ctx => walk(ctx));
}
}