This package is currently unmaintained. Consider checking out Wikimedia’s eslint-docgen
instead.
Keep your rule names and descriptions up-to-date across your repo
$ npm install --save-dev eslint-docs
In the shell
$ eslint-docs
✔ docs/rules/no-insecure-random.md is up-to-date
✔ docs/rules/no-stateless-class.md is up-to-date
✔ docs/rules/promise-must-complete.md is up-to-date
✔ README.md is up-to-date
$ eslint-docs check # Run this in CI!
✔ docs/rules/no-insecure-random.md is valid
✔ docs/rules/no-stateless-class.md is valid
✔ docs/rules/promise-must-complete.md is valid
✔ The README is valid
In package.json:
{
"scripts": {
"docs": "eslint-docs",
"docs:check": "eslint-docs check"
}
}
In a Node.js script
const eslintDocs = require('eslint-docs')
eslintDocs(yourProjectDirectory).then(
() => {
// Everything went OK!
},
() => {
// Something went wrong!
// Currently, you’ll have to ask the user to look at the terminal. sorry :(
}
)
yourProjectDirectory
defaults to the closest directory above process.cwd()
that includes a package.json
ISC © Jed Fox