1.0.4 • Published 4 years ago

eslint-plugin-frontend v1.0.4

Weekly downloads
5
License
ISC
Repository
github
Last release
4 years ago

CircleCI license npm

eslint-plugin-frontend

ESLint rules for React frontends

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-frontend:

$ npm install eslint-plugin-frontend --save-dev

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

Usage

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

{
  "plugins": ["frontend"]
}

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

{
  "rules": {
    "frontend/limit-component-per-file": 2
  }
}

Supported Rules