1.0.4 • Published 6 years ago
eslint-plugin-frontend v1.0.4
eslint-plugin-frontend
ESLint rules for React frontends
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-frontend:
$ npm install eslint-plugin-frontend --save-devNote: 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
}
}