Skip to content

Instantly share code, notes, and snippets.

@deadkff01
Last active July 19, 2019 14:27
Show Gist options
  • Save deadkff01/8054fd682f7ec0c59be37ea45b5e42e4 to your computer and use it in GitHub Desktop.
Save deadkff01/8054fd682f7ec0c59be37ea45b5e42e4 to your computer and use it in GitHub Desktop.
Settings of VSCode
{
"javascript.updateImportsOnFileMove.enabled": "always",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/public/**": true,
"**/node_modules": true,
"**/dist/**": true
},
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment