Skip to content

Instantly share code, notes, and snippets.

@taktran
Last active November 12, 2018 16:50
Show Gist options
  • Save taktran/eda0d789adb3866971b765866acbd214 to your computer and use it in GitHub Desktop.
Save taktran/eda0d789adb3866971b765866acbd214 to your computer and use it in GitHub Desktop.
Settings for .vscode/settings.json
// For 2 spaces + semi colons
{
"editor.formatOnSave": true,
"editor.tabSize": 2,
"files.exclude": {
"node_modules": true
},
"prettier.semi": true,
"prettier.tabWidth": 2,
"prettier.useTabs": false,
"prettier.singleQuote": true
}
// For tabs (4 spaces) + no semi colons
{
"editor.formatOnSave": true,
"editor.tabSize": 4,
"files.exclude": {
"node_modules": true
},
"prettier.semi": false,
"prettier.tabWidth": 4,
"prettier.useTabs": true,
"prettier.singleQuote": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment