Created
March 6, 2022 21:53
-
-
Save whaaaley/223f4de874092b04821bac39e7ecab5a to your computer and use it in GitHub Desktop.
VSCode Settings March 2022
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
Show hidden characters
{ | |
"breadcrumbs.enabled": false, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"editor.cursorBlinking": "phase", | |
"editor.folding": false, | |
"editor.fontFamily": "Source Code Pro", | |
"editor.fontSize": 13, | |
"editor.inlineSuggest.enabled": true, | |
"editor.lightbulb.enabled": false, | |
"editor.lineDecorationsWidth": 21, // undocumented | |
"editor.lineHeight": 21, | |
"editor.minimap.enabled": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [] | |
}, | |
"editor.quickSuggestions": { | |
"comments": false, | |
"other": true, | |
"strings": true | |
}, | |
"editor.renderWhitespace": "none", | |
"editor.rulers": [ | |
80, | |
100, | |
120 | |
], | |
"editor.smoothScrolling": true, | |
"editor.snippetSuggestions": "top", | |
"editor.tabSize": 2, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"vue" | |
], | |
"files.associations": { | |
"*.css": "scss", | |
"*.js": "javascriptreact", | |
"*.jsx": "javascriptreact" | |
}, | |
"files.autoSave": "off", | |
"files.eol": "\n", | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"github.copilot.enable": { | |
"*": true, | |
"markdown": false, | |
"plaintext": true, | |
"yaml": false | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"security.workspace.trust.enabled": false, | |
"stylelint.validate": [ | |
"css", | |
"html", | |
"scss", | |
"vue" | |
], | |
"terminal.integrated.defaultProfile.windows": "Debian (WSL)", | |
"terminal.integrated.fontFamily": "Source Code Pro", | |
"terminal.integrated.fontSize": 13, | |
"typescript.disableAutomaticTypeAcquisition": true, | |
"typescript.tsserver.experimental.enableProjectDiagnostics": true, | |
"window.menuBarVisibility": "toggle", | |
"workbench.activityBar.visible": false, | |
"workbench.colorCustomizations": {}, | |
"workbench.colorTheme": "Dark Dimmed Pro", | |
"workbench.experimental.layoutControl.enabled": false, | |
"workbench.iconTheme": null, | |
"workbench.startupEditor": "none", | |
"workbench.tree.indent": 12, | |
"workbench.tree.renderIndentGuides": "none" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment