Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wayne-weibel/coffeelint-still-todo
CoffeeLint Rule that checks for TODO comments
https://github.com/wayne-weibel/coffeelint-still-todo
coffeelint todo
Last synced: 14 days ago
JSON representation
CoffeeLint Rule that checks for TODO comments
- Host: GitHub
- URL: https://github.com/wayne-weibel/coffeelint-still-todo
- Owner: wayne-weibel
- License: other
- Created: 2016-05-06T20:12:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-21T18:14:34.000Z (over 8 years ago)
- Last Synced: 2024-12-17T06:38:28.834Z (about 2 months ago)
- Topics: coffeelint, todo
- Language: CoffeeScript
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
coffeelint-still-todo
==============================[CoffeeLint](http://www.coffeelint.org) rule that checks for TODO comments.
Installation
------------```sh
npm install -g coffeelint-still-todo
```Usage
-----Add the following configuration to `coffeelint.json`:
```json
"still_todo": {
"level": "warn",
"module": "coffeelint-still-todo"
}
```default level is `ignore`
Configuration
-------------There are currently no configuration options
If you want this to be specific to a project then
```sh
npm install coffeelint-still-todo
```and in the project `coffeelint.json`
```json
"still_todo": {
"level": "warn",
"module": "/path/to/project/node_modules/coffeelint-still-todo"
}
```