import type { Rule } from 'eslint'; /** * ESLint rule: require EJS comment tags to use `-%>` (trim-newline close). * * A standalone `<%# comment %>` tag leaves an empty line in the rendered output. * Using `<%# comment -%>` suppresses the trailing newline. This rule enforces * the `-%>` close delimiter on all standalone comment tags. * * The rule detects `//@ejs-comment-empty-line` marker comments that the EJS * processor inserts for standalone comment tags that do not end with `-%>`. */ export declare const noCommentEmptyLine: Rule.RuleModule; //# sourceMappingURL=no-comment-empty-line.d.ts.map