1.0.0 • Published 4 years ago
eslint-plugin-time-bomb v1.0.0
Eslint TODO time bomb
A eslint rule that will fail after a TODO comment due date.
To install
npm i -D eslint-plugin-time-bombAdd to eslint config
...
plugins: [
"time-bomb"
]
...
rules: {
"time-bomb/time-bomb" : ["error"],
}To use: Add a comment to your code in the following format:
//TODO: some sort of message - MM/DD/YYYYe.g.
//TODO: get some sleep - 12/29/20201.0.0
4 years ago