| 12 | * comments. |
| 13 | */ |
| 14 | export class Rule extends Lint.Rules.AbstractRule { |
| 15 | apply(sourceFile: ts.SourceFile) { |
| 16 | return this.applyWithWalker(new NoExposedTodoWalker(sourceFile, this.getOptions())); |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected