Last active
November 3, 2021 13:17
-
-
Save Felipe-Marques/446a5a3cf205e57f75e0b37e4cc077f1 to your computer and use it in GitHub Desktop.
Arquivo adicional na configuração do Vs Code usado pelo bootcamp do IGTI
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
{ | |
"extensions.ignoreRecommendations": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"debug.console.fontFamily": "Fira Code Retina", | |
"editor.fontFamily": " 'Fira Code Retina' , Consolas, 'Courier New', monospace", | |
"window.zoomLevel": 0, | |
"editor.fontLigatures": false, //Evita que arrow functions vire setas comuns. | |
"editor.fontSize": 11, | |
"editor.lineHeight": 15, | |
"editor.formatOnSave": true, | |
"update.mode": "none", | |
"editor.renderWhitespace": "all", | |
"editor.rulers": [80, 120], | |
"editor.tabSize": 2, | |
"terminal.integrated.fontSize": 11, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"breadcrumbs.enabled": false, | |
"editor.parameterHints.enabled": true, | |
"vsicons.dontShowNewVersionMessage": true, | |
"prettier.singleQuote": true, | |
"files.autoSave": "onFocusChange", //salva automaticamento quando saimos do documento. | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"editor.minimap.enabled": false, | |
"workbench.activityBar.visible": true, | |
"workbench.statusBar.visible": true, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"liveServer.settings.host": "localhost", | |
"liveServer.settings.port": 3500, | |
"liveServer.settings.wait": 5, | |
"liveServer.settings.donotVerifyTags": true, | |
"git.confirmSync": false, | |
"explorer.confirmDelete": false, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"workbench.iconTheme": "vscode-icons", | |
"explorer.compactFolders": false //evita pastas compactadas. | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment