UNPKG

eslint-plugin-jira-ticket-todo-comment

Version:

Checks TODO comments and informs about missing Jira (or other issue tracking system) ticket mentions

14 lines (9 loc) 337 B
/** * @fileoverview Checks TODO comments and informs about missing Jira (or other issue tracking system) ticket mentions * @author bamboechop <npmjs@bamboechop.at> */ "use strict"; // import all rules in lib/rules module.exports.rules = { 'jira-ticket-todo-comment': require(`./rules/jira-ticket-todo-comment`), };