Skip to content

Instantly share code, notes, and snippets.

@DenisMedeirosSDK
Created April 14, 2020 20:39
Show Gist options
  • Save DenisMedeirosSDK/9b7c90915811a680307a26f6e0ae6a0f to your computer and use it in GitHub Desktop.
Save DenisMedeirosSDK/9b7c90915811a680307a26f6e0ae6a0f to your computer and use it in GitHub Desktop.
Configuração VsCode
{
"workbench.colorTheme": "Dracula",
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "material-icon-theme",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"explorer.confirmDelete": false,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.rulers": [
80,
120
],
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"editor.parameterHints.enabled": false,
"emmet.syntaxProfiles": {
"javascript": "jsx",
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"window.zoomLevel": 0,
"editor.wordWrap": "on",
"editor.minimap.enabled": false,
"breadcrumbs.enabled": true,
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment