Skip to content

Instantly share code, notes, and snippets.

@CelioJr
Created March 18, 2020 17:57
Show Gist options
  • Save CelioJr/9354e8c53b718f0d22756633c7dc38f2 to your computer and use it in GitHub Desktop.
Save CelioJr/9354e8c53b718f0d22756633c7dc38f2 to your computer and use it in GitHub Desktop.
File Settings VSCode
{
"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