Created
February 4, 2019 19:19
-
-
Save Senhordim/232a4e0a6b86bbfede702b616c45415f to your computer and use it in GitHub Desktop.
Eslint for React Native
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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