0.1.0 • Published 4 years ago

eslint-plugin-todo-comments v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

eslint-plugin-output-todo-comments npm version

Contains single rule that warns about used warning comments and shows them as they are.

This plugin contains stupidly copy-pasted no-warning-comments rule with one little modification: it shows warn comment as it is instead of showing meaningless warning "Unexpected 'todo' comment". Check out original documentation for no-warning-comments.

// TODO: We may need to make this thing better
// TODO: Function fooBar need to return something good
// TODO: Wow!

The plugin doesn't include any tests and it's created as quick and dirty solution for my internal needs.

Install

npm install -D eslint-plugin-output-todo-comments

Usage

module.exports = {
    "plugins": ["todo-comments"],
    "rules": {
        'todo-comments/todo-count-limit': [
            'error', {
                'terms': ['todo'],
                'location': 'start',
            }
        ],
    }
}