Skip to content

Instantly share code, notes, and snippets.

@Senhordim
Created March 21, 2019 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Senhordim/10617f903f94fab37451a6ca0e1c7526 to your computer and use it in GitHub Desktop.
Save Senhordim/10617f903f94fab37451a6ca0e1c7526 to your computer and use it in GitHub Desktop.
Config eslint for React Native
{
"parser": "babel-eslint",
"env": {
"es6": true
},
"extends": "airbnb",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["react"],
"rules": {
"react/jsx-filename-extension": ["error", { "extension": [".js", ".jsx"] }],
"import/prefer-default-export": "off"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment