Created
June 7, 2020 18:45
-
-
Save jvrviegas/dc2274a5c5cd81487733d4aec28138de to your computer and use it in GitHub Desktop.
Arquivo de configuração do VS Code (JSON)
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
| { | |
| "terminal.integrated.fontSize": 12, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.tabSize": 2, | |
| "editor.fontSize": 12, | |
| "editor.lineHeight": 20, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "eslint.packageManager": "yarn", | |
| "eslint.enable": true, | |
| "eslint.format.enable": true, | |
| "eslint.codeActionsOnSave.mode": "problems", | |
| "explorer.compactFolders": false, | |
| "editor.renderLineHighlight": "gutter", | |
| "workbench.editor.labelFormat": "short", | |
| "extensions.ignoreRecommendations": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.updateImportsOnFileMove.enabled": "never", | |
| "breadcrumbs.enabled": true, | |
| "editor.parameterHints.enabled": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.confirmDelete": false, | |
| "editor.rulers": [80, 120], | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "files.associations": { | |
| ".sequelizerc": "javascript", | |
| ".stylelintrc": "json", | |
| ".prettierrc": "json" | |
| }, | |
| "window.zoomLevel": 0, | |
| "emmet.syntaxProfiles": { "javascript": "jsx" }, | |
| "emmet.includeLanguages": { "javascript": "javascriptreact" }, | |
| "git.enableSmartCommit": true, | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "typescript.tsserver.log": "verbose", | |
| "javascript.suggest.autoImports": true, | |
| "typescript.suggest.autoImports": true, | |
| "material-icon-theme.activeIconPack": "nest", | |
| "screencastMode.onlyKeyboardShortcuts": true, | |
| "material-icon-theme.folders.associations": { | |
| "infra": "app", | |
| "entities": "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" | |
| }, | |
| "material-icon-theme.files.associations": { | |
| "ormconfig.json": "database", | |
| "tsconfig.json": "tune", | |
| "*.proto": "3d" | |
| }, | |
| "workbench.colorTheme": "Dracula" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment