Skip to content

Instantly share code, notes, and snippets.

@mhnpd
Last active March 20, 2018 04:39
Show Gist options
  • Save mhnpd/209fb9d9ddb1ff2be3aca5a4d9ecbb50 to your computer and use it in GitHub Desktop.
Save mhnpd/209fb9d9ddb1ff2be3aca5a4d9ecbb50 to your computer and use it in GitHub Desktop.
Visual Studio Code user setting for JavaScript base development
// Place your settings in this file to overwrite the default settings
{
"editor.formatOnPaste": true,
"editor.acceptSuggestionOnEnter": "off",
"editor.fontSize": 14,
"editor.insertSpaces": false,
"editor.renderWhitespace": "all",
"editor.scrollBeyondLastLine": false,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"explorer.autoReveal": false,
"search.exclude": {
"**/node_modules": false,
"**/bower_components": false
},
"window.zoomLevel": 0,
"workbench.editor.closeOnFileDelete": false,
"workbench.editor.enablePreview": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment