| 16 | |
| 17 | /** Rule that prevents direct calls of the Angular lifecycle hooks */ |
| 18 | export class Rule extends Lint.Rules.AbstractRule { |
| 19 | apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] { |
| 20 | return this.applyWithWalker(new Walker(sourceFile, this.getOptions())); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected