easilyBaffled / eslint-plugin-no-block-return-statement-

1 stars 0 forks source link

eslint-plugin-no-block-return-statement

Call out unecessary return statements

Build Status Greenkeeper badge

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-no-block-return-statement:

$ npm install eslint-plugin-no-block-return-statement --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-no-block-return-statement globally.

Usage

Add eslint-plugin-no-block-return-statement to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "eslint-plugin-no-block-return-statement"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "eslint-plugin-no-block-return-statement/rule-name": 2
    }
}

Supported Rules