Skip to content

Instantly share code, notes, and snippets.

@taktran
Last active November 12, 2018 16:50
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