eslint-config-fbjs
v4.0.0
Published
For the most part, this configuration matches the ESLint configuration we have internally at Facebook.
Downloads
76,781
Readme
eslint-config-fbjs
For the most part, this configuration matches the ESLint configuration we have internally at Facebook.
There are several exceptions:
- No special cases for projects. Some projects have stricter lint rules. Those configurations are not present here. If you open source a project with different configuration, just specify the overrides in your own repository's
.eslintrc
- No fb-specific rules. We have a number of custom rules internally that are not synced out. We may do that in the future. This means there are several things which we will not catch here but will be caught in Phabricator. Beware of that when relying on this configuration as your only linting process.
Usage
Install:
npm
npm install --save-dev \
eslint-config-fbjs \
eslint-plugin-babel \
eslint-plugin-ft-flow \
eslint-plugin-jsx-a11y \
eslint-plugin-react \
eslint \
hermes-eslint
yarn
yarn add --dev \
eslint-config-fbjs \
eslint-plugin-babel \
eslint-plugin-ft-flow \
eslint-plugin-jsx-a11y \
eslint-plugin-react \
eslint \
hermes-eslint
Configure
Add extends: 'fbjs'
to your local .eslintrc
Strict Configuration
This package also comes with a strict version of the config. This can be used to make all warnings be reported as errors. While this can be overly strict, it can be helpful to avoid the case where some CI configurations don't fail for warnings.
Use extends: fbjs/strict
in your .eslintrc