blob: c6ae5189cbd64590b12d086457d877eefabab0e0 (
plain) (
tree)
|
|
import * as Lint from 'tslint';
import * as ts from 'typescript';
import {AsyncSuffixWalker} from './walkers/async_suffix';
export class Rule extends Lint.Rules.AbstractRule {
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] {
return this.applyWithWalker(new AsyncSuffixWalker(sourceFile, this.getOptions()));
}
}
|