@brickblock/eslint-config-react
v3.0.0
Published
Our shared eslint-config-react implementing our React code styleguide
Downloads
6
Keywords
Readme
eslint-config-react
ESLint shareable config for all our React projects. This package contains only React-specific rules. In addition to this package, you should also install our eslint-config-base.
How to use this package?
Install Package
yarn add --dev @brickblock/eslint-config-react
Install Peer Dependencies
npm info "@brickblock/eslint-config-react@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs yarn add --dev "@brickblock/eslint-config-react@latest"
Use Package
Once @brickblock/eslint-config-react
is installed, you can use it by adding it to the extends
section of your ESLint configuration.
/* .eslintrc.js */
module.exports = {
extends: [
'@brickblock/eslint-config-base',
'@brickblock/eslint-config-react'
]
}