Skip to content

Instantly share code, notes, and snippets.

@wtrocki
Forked from radiovisual/.eslintrc
Created November 28, 2017 13:11
Show Gist options
  • Save wtrocki/2ba8338ae45645acac466695e78dae45 to your computer and use it in GitHub Desktop.
Save wtrocki/2ba8338ae45645acac466695e78dae45 to your computer and use it in GitHub Desktop.
React Native AirBnB ESLint Config
{
"parser": "babel-eslint",
"plugins": [
"react",
"react-native"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"extends" : [
"eslint:recommended",
"plugin:react/recommended",
"airbnb-base"
],
"rules" : {
"arrow-body-style" : 'warn'
}
}
npm install --save-dev babel-eslint eslint-config-airbnb-base eslint-plugin-react eslint-plugin-react-native
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment