eslint-plugin-todo
v0.1.0
Published
auto add todo comment to github issue
Downloads
51
Maintainers
Readme
eslint-plugin-todo
auto add todo comment to github issue
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-todo
:
$ npm install eslint-plugin-todo --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-todo
globally.
Usage
Add todo
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"todo"
]
}