| 11 | * detects unescaped HTML tags inside of multi-line comments. |
| 12 | */ |
| 13 | export class Rule extends Lint.Rules.AbstractRule { |
| 14 | apply(sourceFile: ts.SourceFile) { |
| 15 | return this.applyWithWalker(new NoUnescapedHtmlTagWalker(sourceFile, this.getOptions())); |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected