-
-
Save Haveno/ef21222e51fd556e1494a29100a0680e to your computer and use it in GitHub Desktop.
Arquivo de configuração do VSCode para a GoStack 2019
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
- Dracula Oficial | |
- VSicons | |
- Color Highlight | |
- EditorConfig for VSCode | |
- ESLint | |
- Prettier - Code formatter | |
- Rocketseat Snippets |
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", | |
"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