Last active
January 29, 2019 20:46
-
-
Save chrisbodhi/80293bc48d3980285b86456f5911f94b to your computer and use it in GitHub Desktop.
VS Code settings file
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
{ | |
"css.validate": false, | |
"editor.cursorBlinking": "solid", | |
"editor.fontFamily": "Go Mono, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontSize": 13, | |
"editor.minimap.enabled": false, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.tabSize": 4, | |
"editor.wordWrap": "on", | |
"eslint.autoFixOnSave": true, | |
"files.autoSave": "onFocusChange", | |
"files.trimTrailingWhitespace": true, | |
"git.autofetch": true, | |
"javascript.validate.enable": false, | |
"less.validate": false, | |
"rest-client.enableTelemetry": false, | |
"scss.validate": false, | |
"stylelint.enable": true, | |
"sync.askGistName": false, | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.forceDownload": false, | |
"sync.gist": "d3c25ae206783370e2cd7f6c75bdfefe", | |
"sync.quietSync": false, | |
"telemetry.enableTelemetry": false, | |
"tslint.autoFixOnSave": true, | |
"tslint.exclude": [ | |
"**/node_modules/**" | |
], | |
"tslint.ignoreDefinitionFiles": false, | |
"window.zoomLevel": 0, | |
"workbench.activityBar.visible": false, | |
"workbench.colorTheme": "Solarized Light", | |
"workbench.iconTheme": "vs-seti", | |
"[javascript]": { | |
"editor.foldingStrategy": "indentation" | |
}, | |
"[css]": { | |
"editor.tabSize": 2, | |
}, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"telemetry.optout": true, | |
"search.exclude": { | |
"package-lock.json": true | |
}, | |
"terminal.integrated.confirmOnExit": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment