Last active
July 12, 2018 13:39
-
-
Save mikaelvesavuori/b9ee53a8facd17b945f52dfa14e65480 to your computer and use it in GitHub Desktop.
Visual Studio Code settings (dated 2018-07-12)
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.rendererType": "canvas", | |
"terminal.integrated.fontFamily": "Fira Code", | |
"terminal.integrated.fontSize": 12, | |
"terminal.integrated.fontWeight": "100", | |
"terminal.integrated.fontWeightBold": "bold", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.fontFamily": "Fira Code, monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13, | |
"editor.renderWhitespace": "none", | |
"editor.detectIndentation": false, | |
"editor.insertSpaces": false, | |
"editor.tabSize": 2, | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.wordWrap": "off", | |
"emmet.triggerExpansionOnTab": true, | |
"eslint.packageManager": "yarn", | |
"tslint.enable": true, | |
"tslint.jsEnable": true, | |
"workbench.colorTheme": "Palenight Theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"[html]": {}, | |
"html.format.wrapLineLength": 200, | |
"typescript.check.npmIsInstalled": true, | |
"javascript.validate.enable": false, | |
"javascript.implicitProjectConfig.checkJs": true, | |
"prettier.singleQuote": true, | |
"prettier.printWidth": 100, | |
"prettier.useTabs": true, | |
"prettier.tabWidth": 2, | |
"prettier.eslintIntegration": true, | |
"prettier.stylelintIntegration": true, | |
"stylelint.configOverrides": null, | |
"sync.gist": "", | |
"sync.lastUpload": "2018-07-11T12:05:03.819Z", | |
"sync.autoDownload": false, | |
"sync.autoUpload": true, | |
"sync.lastDownload": "2018-03-13T15:23:21.891Z", | |
"sync.forceDownload": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"blankLine.keepOneEmptyLine": true, | |
"blankLine.triggerOnSave": true, | |
"blankLine.insertLineAfterBlock": true, | |
"blankLine.languageIds": [ | |
"javascript", | |
"typescript", | |
"json", | |
"css", | |
"scss", | |
"html", | |
"jsx", | |
"mjs" | |
], | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"workbench.iconTheme": "eq-material-theme-icons", | |
"[javascript]": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment