CoffeeLint rule that checks for TODO comments.
npm install -g coffeelint-still-todo
Add the following configuration to coffeelint.json
:
"still_todo": {
"level": "warn",
"module": "coffeelint-still-todo"
}
default level is ignore
There are currently no configuration options
If you want this to be specific to a project then
npm install coffeelint-still-todo
and in the project coffeelint.json
"still_todo": {
"level": "warn",
"module": "/path/to/project/node_modules/coffeelint-still-todo"
}