1.0.6 • Published 2 years ago

eslint-plugin-explanatory v1.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

description:

a rule to check explanatory note content: cannot cantain words like fixme. you can declare some words youself.You can use it to remind yourself not to forget to do something

usage:

npm install eslint-plugin-explanatory -D
// .eslintrc.js
module.exports = {
  plugins: [ 'explanatory' ],
  rules: { 
    "explanatory/explanatory": "error" // default word keys: 'fixme', 'fix', 'fixit', 'todo'
    // or declare keyWords youself
    'explanatory/explanatory': ['error', {keyWords: ['todo', 'fixme']}] // keyWords can be any words
 }
}

gitbug: https://github.com/pengwenquan/eslint-plugin-explanatory

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago