Created
July 9, 2018 18:09
-
-
Save NickyMeuleman/3d037565b516d380b9804c5cac2c5ce9 to your computer and use it in GitHub Desktop.
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
{ | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"editor.fontSize": 18, | |
"terminal.integrated.fontSize": 18, | |
"editor.renderWhitespace": "all", | |
"window.menuBarVisibility": "toggle", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"terminal.integrated.fontFamily": "consolas", | |
"files.eol": "\n", | |
"editor.snippetSuggestions": "top", | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"typescript": "javascriptreact" | |
}, | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
"editor.formatOnSave": false | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": true | |
}, | |
"prettier.disableLanguages": [ | |
"js" | |
], | |
"eslint.autoFixOnSave": true, | |
"eslint.alwaysShowStatus": true, | |
// tslint autofix is buggy atm | |
"tslint.autoFixOnSave": false, | |
"tslint.alwaysShowStatus": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"gitlens.historyExplorer.enabled": false, | |
"markdown.extension.italic.indicator": "_", | |
"workbench.colorTheme": "Night Owl", | |
"editor.largeFileOptimizations": false, | |
"window.zoomLevel": 0, | |
"editor.formatOnPaste": true, | |
"editor.formatOnType": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment