0.2.2 • Published 8 years ago

eslint-plugin-no-else v0.2.2

Weekly downloads
-
License
ISC
Repository
bitbucket
Last release
8 years ago

eslint-plugin-no-else

Disallow else statements

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-no-else:

$ npm install eslint-plugin-no-else --save-dev

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

Usage

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

{
    "plugins": [
        "no-else"
    ]
}

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

{
    "rules": {
        "no-else/no-else": 2
    }
}

Supported Rules

  • no-else/no-else
0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago