Skip to content

Instantly share code, notes, and snippets.

@vdelacou
Last active February 18, 2019 03:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vdelacou/5192ecc38b5cbff5fa6252ac7f103844 to your computer and use it in GitHub Desktop.
Save vdelacou/5192ecc38b5cbff5fa6252ac7f103844 to your computer and use it in GitHub Desktop.
VSCode settings for React and React Native Project
// Place your settings in this file to overwrite default and user settings.
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"typescript.format.enable": false,
"javascript.format.enable": false,
"typescript.implementationsCodeLens.enabled": true,
"editor.trimAutoWhitespace": true,
"files.eol": "\n",
"files.encoding": "utf8",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"typescript.tsdk": "node_modules\\typescript\\lib",
"files.autoSave": "afterDelay",
"search.exclude": {
"**/node_modules": true,
"**/.vscode": true,
"**/build": true
},
"git.autofetch": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment