Skip to content

Instantly share code, notes, and snippets.

@MarkGalloway
Created May 5, 2017 15:40
Show Gist options
  • Save MarkGalloway/36fbe11819d36fda125a8b1d7ba7ea73 to your computer and use it in GitHub Desktop.
Save MarkGalloway/36fbe11819d36fda125a8b1d7ba7ea73 to your computer and use it in GitHub Desktop.
vscode: market mobile flow project settings
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/node_modules": true,
"build/**": true,
"flow-typed/**": true
},
// Project Style
"editor.insertSpaces": true,
"[javascriptreact]": {
"editor.tabSize": 2
},
"[javascript]": {
"editor.tabSize": 2
},
// Flow Settings (Flow Language Support pkg)
"flow.useNPMPackagedFlow": true,
"javascript.validate.enable": false,
"eslint.enable": true,
// Prettier
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"flow.runOnEdit": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment