Created
March 18, 2020 17:57
-
-
Save CelioJr/9354e8c53b718f0d22756633c7dc38f2 to your computer and use it in GitHub Desktop.
File Settings VSCode
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.colorTheme": "Dracula", | |
"window.zoomLevel": 0, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.tabSize": 2, | |
"editor.fontSize": 18, | |
"editor.lineHeight": 24, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.rulers": [80,120], | |
"editor.formatOnSave": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"emmet.syntaxProfiles":{ | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages":{ | |
"javascript": "javascriptreact" | |
}, | |
//eslint config | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"eslint.validate": [ | |
"vue", | |
"javascript", | |
"typescript", | |
"javascriptreact", | |
"typescriptreact" | |
], | |
//Aplica um sinal visual na esquerda da linha selecionada | |
"editor.renderLineHighlight": "all", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment