A simple, general purpose, zero-dependency ESLint config
@fbluemle/eslint-config"">
A simple, general purpose, zero-dependency ESLint config with rules based on
eslint-config-react-native-community. These are just the core ESLint
rules, with all dependencies on other configs/plugins removed.
npm i -D eslint @fbluemle/eslint-config
or
yarn add -D eslint @fbluemle/eslint-config
Add to your ESLint config (.eslintrc[.js]
, or eslintConfig
field in package.json
):
module.exports = {
extends: '@fbluemle',
};
This base config only defines the es6
env. Depending on your project, you
probably want to specify other environments (e.g. browser
or node
) in
addition.
MIT