Airbnb Flow - ESLint Shareable Config
!travistravis-imagetravis-url
!npmnpm-imagenpm-url
!downloadsdownloads-imagedownloads-urlAn ESLint Shareable Config for Flow support in Airbnb JavaScript Style
Install
npm install eslint-config-airbnb-flow
Usage
Shareable configs are designed to work with theextends
feature of .eslintrc
files.
You can learn more about Shareable Configs on the official ESLint website.This Shareable Config adds Flow to the baseline Airbnb JavaScript Style rules provided in
eslint-config-airbnb
.Here's how to install everything you need:
npm install eslint-config-airbnb eslint-config-airbnb-flow
Then, add this to your .eslintrc file:
{
"extends": ["airbnb", "airbnb-flow"]
}
Note: We omitted the
eslint-config-
prefix since it is automatically assumed by ESLint.You can override settings from the shareable config by adding them directly into your
.eslintrc
file.