| 24 | * file does not have the license banner at the top of the file. |
| 25 | */ |
| 26 | export class Rule extends Lint.Rules.AbstractRule { |
| 27 | apply(sourceFile: ts.SourceFile) { |
| 28 | return this.applyWithWalker(new RequireLicenseBannerWalker(sourceFile, this.getOptions())); |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected