Created
January 19, 2022 16:13
-
-
Save obrunofontana/f2d9fa4581963a5e3f0793769dc7722f to your computer and use it in GitHub Desktop.
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
| { | |
| "workbench.iconTheme": "material-icon-theme", | |
| "tabnine.experimentalAutoImports": true, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "terminal.integrated.fontSize": 14, | |
| // bracket pairs colorize | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.guides.bracketPairs":"active", | |
| "editor.tabSize": 2, | |
| "editor.fontSize": 13, | |
| "editor.lineHeight": 26, | |
| "editor.fontFamily": "JetBrains Mono", | |
| "editor.fontLigatures": true, | |
| "editor.letterSpacing": 1.2, | |
| "editor.semanticHighlighting.enabled": false, | |
| "editor.rulers": [80, 120], | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true | |
| // "**/node_modules": true | |
| }, | |
| "files.associations": { | |
| ".sequelizerc": "javascript", | |
| ".stylelintrc": "json", | |
| ".prettierrc": "json", | |
| "*.tsx": "typescriptreact" | |
| }, | |
| "typescript.tsserver.log": "off", | |
| "material-icon-theme.activeIconPack": "nest", | |
| "material-icon-theme.folders.associations": { | |
| "infra": "app", | |
| "entities": "class", | |
| "domain": "class", | |
| "schemas": "class", | |
| "typeorm": "database", | |
| "repositories": "mappings", | |
| "http": "container", | |
| "migrations": "tools", | |
| "modules": "components", | |
| "implementations": "core", | |
| "dtos": "typescript", | |
| "fakes": "mock", | |
| "websockets": "pipe", | |
| "protos": "pipe", | |
| "grpc": "pipe", | |
| "providers": "include", | |
| "subscribers": "messages", | |
| "useCases": "controller", | |
| "kafka": "scripts", | |
| "mappers": "meta", | |
| "_shared": "shared", | |
| "eslint-config": "tools", | |
| "kube": "kubernetes" | |
| }, | |
| "material-icon-theme.files.associations": { | |
| "ormconfig.json": "database", | |
| "tsconfig.json": "tune", | |
| "*.proto": "3d", | |
| "*.webpack.js": "webpack" | |
| }, | |
| "window.menuBarVisibility": "toggle", | |
| "cSpell.enableFiletypes": [ | |
| "!asciidoc", | |
| "!c", | |
| "!cpp", | |
| "!csharp", | |
| "!go", | |
| "!handlebars", | |
| "!haskell", | |
| "!jade", | |
| "!java", | |
| "!latex", | |
| "!php", | |
| "!pug", | |
| "!python", | |
| "!restructuredtext", | |
| "!rust", | |
| "!scala", | |
| "!scss" | |
| ], | |
| "cSpell.language": "en,pt", | |
| "editor.suggestSelection": "first", | |
| "cSpell.userWords": [ | |
| "chakra", | |
| "middlewares", | |
| "prefetch", | |
| "rocketseat" | |
| ], | |
| "terminal.integrated.showExitAlert": false, | |
| "splitHTMLAttributes.closingBracketOnNewLine": true, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[scss]": { | |
| "editor.defaultFormatter": "HookyQR.beautify" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "terminal.integrated.defaultProfile.linux": "zsh", | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "workbench.colorTheme": "Launchbase Theme", | |
| "[dart]": { | |
| "editor.formatOnSave": true, | |
| "editor.formatOnType": true, | |
| "editor.rulers": [ | |
| 80 | |
| ], | |
| "editor.selectionHighlight": false, | |
| "editor.suggest.snippetsPreventQuickSuggestions": false, | |
| "editor.suggestSelection": "first", | |
| "editor.tabCompletion": "onlySnippets", | |
| "editor.wordBasedSuggestions": false | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment