eslint-plugin-no-pause

No pause property allowed

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
eslint-plugin-no-pause
0.0.26 years ago6 years agoMinified + gzip package size for eslint-plugin-no-pause in KB

Readme

eslint-plugin-no-pause
No pause property allowed

Installation

You'll first need to install ESLint:
$ npm i eslint --save-dev

Next, install eslint-plugin-no-pause:
$ npm install eslint-plugin-no-pause --save-dev

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

Usage

Add no-pause to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
    "plugins": [
        "no-pause"
    ]
}

Then configure the rules you want to use under the rules section.
{
    "rules": {
        "no-pause/no-pause": "error" 
    }
}

Supported Rules

  • Fill in provided rules here