0.0.1 • Published 4 years ago

eslint-plugin-top v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

eslint-plugin-top

Disallow side effects at the top level of files

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-top:

npm install eslint-plugin-top --save-dev

Usage

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

{
  "plugins": ["top"]
}

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

{
  "rules": {
    "top/no-top-level-variables": 2,
    "top/no-top-level-side-effect": 2
  }
}

Supported Rules