Skip to content

Instantly share code, notes, and snippets.

@paulospiguel
Forked from maiquealmeida/Extensões
Created December 4, 2019 00:52
Show Gist options
  • Save paulospiguel/cf12981d9abec3c24ebe1150ad58948f to your computer and use it in GitHub Desktop.
Save paulospiguel/cf12981d9abec3c24ebe1150ad58948f to your computer and use it in GitHub Desktop.
Arquivo de configuração do VSCode para a GoStack 2019
- Dracula Oficial
- VSicons
- Color Highlight
- EditorConfig for VSCode
- ESLint
- Prettier - Code formatter
- Rocketseat Snippets
{
"workbench.colorTheme": "Dracula",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.lineHeight": 20,
"editor.formatOnSave": true,
"editor.ruller": [
80,
120
],
"editor.tabSize": 2,
"editor.renderLineHighlight": "gutter",
"terminal.integrated.fontSize": 12,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": true,
"prettier.eslintIntegration": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment