Skip to content

Instantly share code, notes, and snippets.

@thijssmudde
Forked from radiovisual/.eslintrc
Last active February 17, 2018 20:37
Show Gist options
  • Select an option

  • Save thijssmudde/51b06d8804a533b954795d6a40909f6f to your computer and use it in GitHub Desktop.

Select an option

Save thijssmudde/51b06d8804a533b954795d6a40909f6f to your computer and use it in GitHub Desktop.
React Native AirBnB ESLint Config (Fixed)
{
"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