Skip to content

Instantly share code, notes, and snippets.

@mmroch4
Last active April 7, 2023 15:16
Show Gist options
  • Save mmroch4/26bf15fce186bf56f3eb3ad59cf0e3da to your computer and use it in GitHub Desktop.
Save mmroch4/26bf15fce186bf56f3eb3ad59cf0e3da to your computer and use it in GitHub Desktop.
My VSCode Settings
{
"editor.fontSize": 16,
"terminal.integrated.fontFamily": "'MesloLGS', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"terminal.integrated.fontSize": 14,
"editor.tabSize": 2,
"editor.inlineSuggest.enabled": true,
"files.autoSave": "afterDelay",
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".prettierrc": "json"
},
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.eslint": true,
"source.organizeImports": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterNames.enabled": "all",
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"workbench.colorTheme": "GitHub Dark Dimmed",
"workbench.editor.untitled.hint": "hidden",
// Bookmarks
"bookmarks.saveBookmarksInProject": true,
// Material Icons -----
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.files.associations": {},
"material-icon-theme.folders.associations": {
"home": "",
"sonic": "log",
"store": "database",
"stitches": "theme",
"dto": "interface",
"repository": "mappings",
"adapters": "contract",
"grpc": "pipe",
"kube": "kubernetes",
"main": "lib",
"websockets": "pipe",
"implementations": "core",
"protos": "pipe",
"entities": "class",
"kafka": "pipe",
"use-cases": "functions",
"migrations": "tools",
"schemas": "class",
"useCases": "functions",
"eslint-config": "tools",
"typeorm": "database",
"_shared": "shared",
"mappers": "meta",
"fakes": "mock",
"modules": "components",
"subscribers": "messages",
"domain": "class",
"protocols": "contract",
"infra": "app",
"view-models": "views",
"presentation": "template",
"dtos": "typescript",
"http": "container",
"providers": "include",
"factories": "class",
"repositories": "mappings"
},
// Git -----
"git.confirmSync": false,
"git.autofetch": true,
// Lang Configs -----
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
// Code Runner -----
"code-runner.clearPreviousOutput": true,
// Live Server -----
"liveServer.settings.donotShowInfoMsg": true,
// ESLint -----
"eslint.enable": true,
"eslint.format.enable": true,
// Prettier -----
"prettier.enable": true,
"prettier.singleQuote": true,
"prettier.tabWidth": 2,
"prettier.printWidth": 100,
// Indent Rainbow -----
"indentRainbow.colors": [
"rgba(255, 215, 0, 0.05)",
"rgba(218, 113, 215, 0.05)",
"rgba(135, 206, 250, 0.05)"
],
"indentRainbow.ignoreErrorLanguages": ["markdown"],
"indentRainbow.updateDelay": 200,
// Bracket Pairs Colorizer -----
"editor.guides.bracketPairs": true,
"editor.bracketPairColorization.enabled": true,
// TODO TREE
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]",
"ADD AUTHENTICATED ROUTES"
],
// GitLens Configs
"gitlens.defaultDateLocale": null,
"gitlens.defaultDateFormat": null,
"gitlens.defaultDateShortFormat": null,
// cSpell Configs
"cSpell.language": "en,pt-BR",
// Dotenv Highlight
"window.zoomLevel": 2,
"material-icon-theme.activeIconPack": "nest"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment