UNPKG

eslint-plugin-comment-length

Version:

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

8 lines (6 loc) 202 B
const punctuation = [",", ".", "?", ":", "!", ";"]; function isPunctuation(char) { return !!char && punctuation.includes(char); } export { isPunctuation }; //# sourceMappingURL=is-punctuation.js.map