Created
April 18, 2023 15:46
-
-
Save isaacviannadev/433208872159c12cbe4f0fd30083c6b9 to your computer and use it in GitHub Desktop.
my settings to vscode ⚛️
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
| { | |
| "editor.suggestSelection": "first", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.colorTheme": "Dracula", | |
| "explorer.confirmDelete": false, | |
| "git.enableSmartCommit": true, | |
| "terminal.integrated.fontFamily": "monospace", | |
| "editor.fontSize": 12, | |
| "editor.fontLigatures": true, | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports": false | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "eslint.options": {}, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "sync.autoDownload": true, | |
| "sync.autoUpload": true, | |
| "sync.quietSync": true, | |
| "sync.gist": "00442a6d0c87fd448596233cddd90cec", | |
| "cSpell.language": "en,pt-BR,pt", | |
| "cSpell.userWords": [ | |
| "camelcase", | |
| "chakra", | |
| "Checkmark", | |
| "fastify", | |
| "ferragamo", | |
| "fieldname", | |
| "firestore", | |
| "friday", | |
| "hookform", | |
| "Mercadopago", | |
| "middlewares", | |
| "originalname", | |
| "pilates", | |
| "preconnect", | |
| "resetar", | |
| "Rollbar", | |
| "storaged", | |
| "stylelint", | |
| "tailwindcss", | |
| "typeorm", | |
| "unform", | |
| "uuidv", | |
| "varchar", | |
| "Vegano", | |
| "Venuz", | |
| "Vianna", | |
| "Whatsapp", | |
| "worten", | |
| "Xiaomi" | |
| ], | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "editor.tabSize": 2, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.quickSuggestions": { | |
| "strings": true | |
| }, | |
| "editor.suggest.insertMode": "replace", | |
| "gitlens.codeLens.scopes": ["document"], | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "explorer.confirmDragAndDrop": false, | |
| "editor.linkedEditing": true, | |
| "[scss]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| // "eslint.run": "onSave", | |
| "editor.wordWrap": "wordWrapColumn", | |
| "material-icon-theme.folders.associations": { | |
| "infra": "app", | |
| "entities": "class", | |
| "schemas": "class", | |
| "repositories": "database", | |
| "http": "container", | |
| "migrations": "tools", | |
| "modules": "components", | |
| "implementations": "core", | |
| "dtos": "typescript", | |
| "fakes": "mock", | |
| "typeorm": "database" | |
| }, | |
| "material-icon-theme.files.associations": { | |
| "ormconfig.json": "database", | |
| "tsconfig.json": "tune", | |
| "*.resolver.ts": "Nest-resolver", | |
| "*.module.ts": "Nest-module", | |
| "*.service.ts": "Nest-service", | |
| "*.gateway.ts": "Nest-gateway", | |
| "*.controller.ts": "Nest-controller", | |
| "*.guard.ts": "Nest-guard", | |
| "*.middleware.ts": "Nest-middleware" | |
| }, | |
| "[vue]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "javascript.preferences.quoteStyle": "single", | |
| "typescript.preferences.quoteStyle": "single", | |
| "prettier.jsxSingleQuote": true, | |
| "prettier.singleQuote": true, | |
| "[yaml]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.formatOnPaste": true, | |
| "editor.formatOnType": true, | |
| "vsicons.dontShowNewVersionMessage": true, | |
| "gitlens.advanced.messages": { | |
| "suppressFileNotUnderSourceControlWarning": true, | |
| "suppressGitMissingWarning": true | |
| }, | |
| "git.autofetch": true, | |
| "cSpell.enableFiletypes": ["jsx", "jsx-tags", "styled-css", "tailwindcss"], | |
| "editor.wordWrapColumn": 300, | |
| "git.confirmSync": false, | |
| "editor.suggest.preview": true, | |
| "[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 | |
| }, | |
| "[prisma]": { | |
| "editor.defaultFormatter": "Prisma.prisma", | |
| "editor.formatOnSave": true | |
| }, | |
| "terminal.integrated.defaultProfile.windows": "Git Bash", | |
| "terminal.integrated.profiles.windows": { | |
| "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe (migrated)": { | |
| "path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
| "args": [] | |
| } | |
| }, | |
| "workbench.tree.indent": 15, | |
| "editor.accessibilitySupport": "off", | |
| "editor.inlineSuggest.enabled": true, | |
| "github.copilot.enable": { | |
| "*": true, | |
| "yaml": true, | |
| "plaintext": true, | |
| "markdown": true, | |
| "scminput": false, | |
| "typescriptreact": true | |
| }, | |
| "editor.largeFileOptimizations": false, | |
| "[javascriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "tailwindCSS.includeLanguages": { | |
| "html": "html", | |
| "javascript": "javascript", | |
| "css": "css", | |
| "javascriptreact": "javascriptreact", | |
| "typescript": "typescript", | |
| "typescriptreact": "typescriptreact" | |
| }, | |
| "editor.quickSuggestions": { | |
| "strings": true | |
| }, | |
| "workbench.editor.enablePreview": false, | |
| "editor.formatOnSaveMode": "file", | |
| "diffEditor.codeLens": true, | |
| "editor.minimap.maxColumn": 180, | |
| "material-icon-theme.folders.theme": "specific", | |
| "material-icon-theme.saturation": 1, | |
| "editor.formatOnSave": true, | |
| "editor.fontFamily": "'Cascade Code', 'Fira Code'", | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "vs-color-picker.autoLaunch": true, | |
| "sonarlint.connectedMode.connections.sonarqube": [ | |
| { | |
| "serverUrl": "https://sonarqube.worten.net", | |
| "connectionId": "sonarqube-worten" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment