eslint-plugin-comment-length
Version:
An ESLint plugin that provides rules that limit the line length of your comments
10 lines (7 loc) • 301 B
JavaScript
import { formatBlock } from './util.format-block.js';
function fixOverflow(fixer, fixableComment, context) {
const newValue = formatBlock(fixableComment, context);
return fixer.replaceTextRange(context.comment.range, newValue);
}
export { fixOverflow };
//# sourceMappingURL=fix.overflow.js.map