Created
February 3, 2020 09:55
-
-
Save amaankulshreshtha/d60c2e9b4429d7b62eb23bb3702092e4 to your computer and use it in GitHub Desktop.
Eslint config for react-native project
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
{ | |
"extends": "react-native-wcandillon", | |
"rules": { | |
"quotes": ["error", "single"], | |
"react/jsx-indent": ["error", "tab"], | |
"prettier/prettier": [ | |
"error", | |
{ | |
"singleQuote": true, | |
"useTabs": true, | |
"tabWidth": 2 | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment