Skip to content

Instantly share code, notes, and snippets.

@gsbelarus
Created November 1, 2018 17:30
Show Gist options
  • Save gsbelarus/14fe4224b67f1981f6508a234642f103 to your computer and use it in GitHub Desktop.
Save gsbelarus/14fe4224b67f1981f6508a234642f103 to your computer and use it in GitHub Desktop.
// Place your settings in this file to overwrite the default settings
{
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.fontSize": 12,
"editor.minimap.enabled": false,
"editor.autoClosingBrackets": "beforeWhitespace",
"editor.renderIndentGuides": false,
"editor.fontFamily": "Consolas, Operator Mono, Courier New, monospace",
"editor.find.autoFindInSelection": true,
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.ejs": "html"
},
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"workbench.colorTheme": "Visual Studio Light",
"files.autoSave": "afterDelay",
"files.autoGuessEncoding": true,
"window.restoreWindows": "all",
"window.newWindowDimensions": "inherit",
"window.title": "${rootName}${separator}${dirty}${activeEditorShort}${separator}${appName}",
"eslint.enable": false,
"eslint.run": "onSave",
"tslint.enable": false,
"tslint.run": "onSave",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\cmd.exe",
"terminal.integrated.fontSize": 12,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"window.zoomLevel": 0,
"git.autofetch": true,
"git.enableSmartCommit": true,
"diffEditor.ignoreTrimWhitespace": true,
"workbench.startupEditor": "welcomePage",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"./obsolete/**": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"./obsolete/**": true,
"./**/test": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"./obsolete/**": true
},
"typescript.updateImportsOnFileMove.enabled": "always",
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"breadcrumbs.enabled": false,
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "none",
"javascript.implicitProjectConfig.checkJs": true,
"files.autoSaveDelay": 8000,
"editor.autoClosingQuotes": "beforeWhitespace",
"editor.autoIndent": false,
"editor.autoSurround": "never"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment