Created
March 21, 2019 01:35
-
-
Save Senhordim/10617f903f94fab37451a6ca0e1c7526 to your computer and use it in GitHub Desktop.
Config 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", | |
"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