| 55 | * More details here: https://nodejs.org/api/esm.html#esm_import_statements. |
| 56 | */ |
| 57 | export class Rule extends AbstractRule { |
| 58 | override apply(sourceFile: ts.SourceFile): RuleFailure[] { |
| 59 | const options = this.getOptions().ruleArguments[0]; |
| 60 | return this.applyWithFunction(sourceFile, (ctx) => visitNode(sourceFile, ctx, options)); |
nothing calls this directly
no outgoing calls
no test coverage detected