UNPKG

eslint-plugin-comment-length

Version:

An ESLint plugin that provides rules that limit the line length of your comments

10 lines (7 loc) 231 B
'use strict'; const punctuation = [",", ".", "?", ":", "!", ";"]; function isPunctuation(char) { return !!char && punctuation.includes(char); } exports.isPunctuation = isPunctuation; //# sourceMappingURL=is-punctuation.cjs.map