Created
June 13, 2024 15:34
-
-
Save cortelucas/506f1cb11d988f4e6f235b23321195a0 to your computer and use it in GitHub Desktop.
Minhas configurações do vscode
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
{ | |
"editor.fontSize": 14, | |
"editor.lineHeight": 26, | |
"editor.fontFamily": "'JetBrains Mono', 'monospace', monospace", | |
"editor.fontLigatures": true, | |
"editor.tabSize": 2, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit", | |
"source.organizeImports": "explicit" | |
}, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "MesloLGS NF", | |
"symbols.hidesExplorerArrows": false, | |
"workbench.iconTheme": "symbols", | |
"workbench.colorTheme": "Min Dark", | |
"workbench.editor.labelFormat": "short", | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".stylelintrc": "json", | |
"*.tsx": "typescriptreact", | |
".env.*": "dotenv", | |
".prettierrc": "json" | |
}, | |
"files.exclude": { | |
"**\/CVS": true, | |
"**\/.DS_Store": true, | |
"**\/.hg": true, | |
"**\/.svn": true, | |
"**\/.git": true, | |
// "node_modules": true | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"javascript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.suggest.autoImports": true, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"git.enableSmartCommit": true, | |
"polacode.transparentBackground": true, | |
"polacode.target": "snippet", | |
"redhat.telemetry.enabled": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment