Last active
October 19, 2021 23:21
-
-
Save luizwhite/697b14c8a030385a68823f04e1e78441 to your computer and use it in GitHub Desktop.
VSCode Settings
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
{ | |
"window.menuBarVisibility": "toggle", | |
"window.zoomLevel": 0, | |
"workbench.colorTheme": "Aura Dark", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.editor.labelFormat": "short", | |
"workbench.editor.wrapTabs": true, | |
"workbench.productIconTheme": "fluent-icons", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.rulers": [80, 120], | |
"editor.fontSize": 14, | |
"editor.tabSize": 2, | |
"editor.lineHeight": 20, | |
"editor.renderLineHighlight": "gutter", | |
"editor.wordWrap": "off", | |
"editor.wordWrapColumn": 80, // when ON | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.mouseWheelScrollSensitivity": 2, | |
"editor.smoothScrolling": true, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.parameterHints.enabled": false, | |
"editor.suggest.showStatusBar": true, | |
"editor.suggestSelection": "first", | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs": true, | |
// "editor.semanticHighlighting.enabled": false, | |
"explorer.compactFolders": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"extensions.ignoreRecommendations": true, | |
"emmet.syntaxProfiles": { "javascript": "jsx" }, | |
"emmet.includeLanguages": { "javascript": "javascriptreact" }, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"javascript.suggest.autoImports": true, | |
"typescript.suggest.autoImports": true, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "Fira Code", | |
"terminal.integrated.defaultProfile.linux": "zsh", | |
"terminal.integrated.tabs.title": "${process}", | |
"terminal.integrated.tabs.description": "${task}${separator}${local}${separator}${cwdFolder}", | |
"terminal.integrated.showExitAlert": false, | |
"prettier.semi": true, | |
"prettier.singleQuote": true, | |
"prettier.jsxSingleQuote": false, | |
"prettier.trailingComma": "es5", | |
"prettier.arrowParens": "always", | |
"prettier.bracketSpacing": true, | |
"prettier.printWidth": 80, | |
"eslint.workingDirectories": ["./src"], | |
"editor.formatOnSave": false, | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"[prisma]": { | |
"editor.defaultFormatter": "Prisma.prisma", | |
"editor.formatOnSave": true | |
}, | |
"files.exclude": { | |
"**/node_modules": true | |
}, | |
"files.watcherExclude": { | |
"**/.next/*/**": true, | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true, | |
"**/.hg/store/**": true | |
}, | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".prettierrc": "json", | |
".env": "dotenv" | |
}, | |
"cSpell.dictionaries": ["en,pt,pt-BR"], | |
"cSpell.userWords": [ | |
"browserslist", | |
"camelcase", | |
"dtos", | |
"errored", | |
"linebreak", | |
"middlewares", | |
"postgres", | |
"tsyringe", | |
"typeorm", | |
"unform", | |
"unlogged", | |
"varchar", | |
"prefetch" | |
], | |
"cSpell.language": "en, pt, pt-BR", | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.defaultGravatarsStyle": "wavatar", | |
"material-icon-theme.activeIconPack": "react", | |
"material-icon-theme.hidesExplorerArrows": true, | |
"material-icon-theme.folders.color": "#26a69a", | |
"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", | |
"kube": "kubernetes", | |
"landing": "home" | |
}, | |
"material-icon-theme.files.associations": { | |
"ormconfig.json": "database", | |
"tsconfig.json": "tune", | |
"*.proto": "3d", | |
"*.webpack.js": "webpack" | |
}, | |
"emojisense.languages": { | |
"markdown": true, | |
"plaintext": { | |
"markupCompletionsEnabled": false, | |
"emojiDecoratorsEnabled": false | |
}, | |
"scminput": true, | |
"git-commit": true, | |
"typescript": true, | |
"typescriptreact": true | |
}, | |
"emojisense.markupCompletionsEnabled": false, | |
"emojisense.unicodeCompletionsEnabled": false, | |
"emojisense.emojiDecoratorsEnabled": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment