Last active
November 12, 2018 16:50
Settings for .vscode/settings.json
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
// 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 | |
} |
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
// 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