Last active
March 2, 2020 09:47
-
-
Save alzalabany/b8ac77c70ded53179b4d280dd8a7787a 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
{ | |
"workbench.iconTheme": "vscode-icons", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"eslint.format.enable": true, | |
"eslint.packageManager": "yarn", | |
"typescriptHero.imports.organizeOnSave": true, | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true, | |
"source.organizeImports": true | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"editor.renderWhitespace": "boundary" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment