Created
November 1, 2021 05:14
-
-
Save DoctorDerek/190713a7206d173cb332a6f214de5def to your computer and use it in GitHub Desktop.
Top 10 Advanced VS Code Settings for Senior Developers by Dr. Derek Austin 🥳 https://medium.com/p/46e348351bd6
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
"workbench.activityBar.visible": false, | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": false, | |
"plaintext": false, | |
"markdown": false, | |
"env": false | |
}, | |
"window.zoomLevel": 1, | |
"editor.fontSize": 15, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"javascript.preferences.importModuleSpecifier": "non-relative", | |
"typescript.preferences.importModuleSpecifier": "non-relative", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true, | |
"addMissingImports": true | |
}, | |
"css.validate": false, | |
"stylelint.enable": true, | |
"[css]": { | |
"editor.suggest.insertMode": "replace" | |
}, | |
"emmet.includeLanguages": { | |
"postcss": "css", | |
"javascript": "javascriptreact", | |
"markdown": "javascriptreact" | |
}, | |
"emmet.syntaxProfiles": { | |
"postcss": "css" | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"tailwindCSS.emmetCompletions": true, | |
"tailwindCSS.validate": true, | |
"workbench.editor.enablePreview": false, | |
"sync.gist": "b668044236ffffffff55555555555555", |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment