Created
March 23, 2020 09:45
-
-
Save jamesmcallister/3c3eef210daa4aae4e7e3ed04c524eba to your computer and use it in GitHub Desktop.
vscode settings
This file contains 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
{ | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"breadcrumbs.enabled": true, | |
"color-highlight.markerType": "dot-before", | |
"editor.fontFamily": "\"JetBrains Mono\"", | |
"editor.fontSize": 13, | |
"editor.lineHeight": 20, | |
"editor.fontLigatures": true, | |
"editor.fontWeight": "600", | |
"editor.formatOnSave": true, | |
"editor.minimap.enabled": false, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.suggestSelection": "first", | |
"editor.tabSize": 2, | |
"eslint.alwaysShowStatus": true, | |
"eslint.enable": true, | |
"eslint.workingDirectories": [ | |
{ | |
"changeProcessCWD": true, | |
"directory": "./" | |
} | |
], | |
"files.autoSave": "onFocusChange", | |
"git.autofetch": true, | |
"git.fetchOnPull": true, | |
"git.rebaseWhenSync": true, | |
"git.showPushSuccessNotification": true, | |
"javascript.implicitProjectConfig.checkJs": true, | |
"javascript.suggest.autoImports": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"json.schemas": [ | |
{ | |
"fileMatch": [ | |
"cypress.json" | |
], | |
"url": "https://on.cypress.io/cypress.schema.json" | |
} | |
], | |
"typescript.suggest.autoImports": false, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"vsicons.dontShowNewVersionMessage": true, | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"window.zoomLevel": 0, | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.startupEditor": "newUntitledFile", | |
"diffEditor.renderSideBySide": true, | |
"git.enableSmartCommit": true, | |
"liveshare.diagnosticLogging": true, | |
"liveshare.featureSet": "insiders", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.colorTheme": "Night Owl", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment