Skip to content

Instantly share code, notes, and snippets.

@Senhordim
Created February 4, 2019 19:19
Show Gist options
  • Save Senhordim/232a4e0a6b86bbfede702b616c45415f to your computer and use it in GitHub Desktop.
Save Senhordim/232a4e0a6b86bbfede702b616c45415f to your computer and use it in GitHub Desktop.
Eslint for React Native
{
"parser": "babel-eslint",
"extends": ["airbnb", "plugin:react-native/all"],
"plugins": ["react-native", "jsx-a11y", "import"],
"env": {
"jest": true
},
"rules": {
"react-jsx-filename-extension": [
"error",
{
"extensions": [".jsx", ".js"]
}
],
"import/prefer-default-export": "off"
},
"globals": {
"__DEV__": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment