Last active
November 3, 2017 11:06
-
-
Save rajeevkannav/bcf8f4b8b2d9a01b507bd3e276766228 to your computer and use it in GitHub Desktop.
React Native Starter Help
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
react-native init AppLicationName | |
cd AppLicationName | |
{ | |
// .vscode/settings.json | |
// Place your settings in this file to overwrite default and user settings. | |
"prettier.eslintIntegration": true, | |
"editor.formatOnSave": true | |
} | |
into Package JSON Scripts | |
"lint": "eslint app/", | |
"lint:fix": "eslint app/ --fix" | |
npm install --save-dev babel-eslint eslint eslint-config-airbnb eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react prettier prettier-eslint | |
react-native start | |
react-native run-android | |
(Optional) npm install --save [email protected] [email protected] [email protected] @expo/[email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment