0.0.1 • Published 7 years ago

eslint-plugin-leon-require-jsdoc v0.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

eslint-plugin-leon-require-jsdoc

An update to the require-jsdoc that catches more function expressions and declarations.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-leon-require-jsdoc:

$ npm install eslint-plugin-leon-require-jsdoc --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-leon-require-jsdoc globally.

Usage

Add leon-require-jsdoc to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "leon-require-jsdoc"
    ]
}