Last active
December 9, 2020 22:23
-
-
Save HallexCosta/aba976439e3f88ffb44a1154e4878c00 to your computer and use it in GitHub Desktop.
VSCode Configs
This file contains hidden or 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
{ | |
"tabnine.experimentalAutoImports": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 14, | |
"terminal.integrated.fontFamily": "Source Code Pro for Powerline", | |
"terminal.integrated.fontSize": 14, | |
"emmet.syntaxProfiles": { "javascript": "jsx" }, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"go.testOnSave": true, | |
"go.lintOnSave": "package", | |
"go.formatTool": "goimports", | |
"go.testFlags": [ | |
"-v" | |
], | |
"go.autocompleteUnimportedPackages": true, | |
"[go]": { | |
"editor.formatOnSave": true, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
} | |
}, | |
"javascript.suggest.autoImports": true, | |
"typescript.suggest.autoImports": true, | |
"editor.fontLigatures": true, | |
"terminal.integrated.automationShell.windows": "", | |
"terminal.integrated.fontWeight": "500", | |
"terminal.integrated.fontWeightBold": "500", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"material-icon-theme.folders.associations": { | |
"infra": "app", | |
"feature": "app", | |
"features": "app", | |
"useCases": "app", | |
"entities": "class", | |
"entity": "class", | |
"schemas": "class", | |
"typeorm": "database", | |
"repositories": "mappings", | |
"repository": "", | |
"http": "container", | |
"migrations": "tools", | |
"modules": "components", | |
"implementations": "core", | |
"dtos": "typescript", | |
"fakes": "mock", | |
"websockets": "pipe", | |
"protos": "pipe", | |
"grpc": "pipe" | |
}, | |
"editor.tabSize": 2, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"typescript.preferences.quoteStyle": "double", | |
"explorer.compactFolders": false, | |
"go.useLanguageServer": true, | |
"files.watcherExclude": { | |
"**/**/*": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment