Skip to content

Instantly share code, notes, and snippets.

@padupe
Created May 16, 2022 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save padupe/9408d713eaef8bf1d908d0ccfd166686 to your computer and use it in GitHub Desktop.
Save padupe/9408d713eaef8bf1d908d0ccfd166686 to your computer and use it in GitHub Desktop.
VS Code | settings.json
{
"editor.fontSize": 14,
"editor.fontFamily": "monospace",
"workbench.iconTheme": "material-icon-theme",
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"files.associations": {
".prettierrc": "json",
".env.*": "dotenv"
},
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"[javascript]": {
"editor.formatOnSave": true
},
"[typescript]": {
"editor.formatOnSave": true
},
"terminal.integrated.fontFamily": "monospace",
"terminal.integrated.fontSize": 14,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"settingsSync.ignoredSettings": ["editor.fontFamily"],
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"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": "examples",
"kafka": "scripts",
"mappers": "meta",
"_shared": "shared",
"eslint-config": "tools",
"kube": "kubernetes"
},
"[prisma]": {
"editor.formatOnSave": true
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"*.proto": "3d",
"*.webpack.js": "webpack"
},
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"go.toolsManagement.autoUpdate": true,
"gitlens.defaultDateFormat": "D/MM/YYYY",
"gitlens.defaultDateShortFormat": "D MMM, YYYY",
"gitlens.defaultTimeFormat": "HH:mm",
"workbench.colorTheme": "Omni",
"git.confirmSync": false,
"bracket-pair-colorizer-2.depreciation-notice": false,
"workbench.startupEditor": "none",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"path-intellisense.extensionOnImport": true,
"diffEditor.ignoreTrimWhitespace": false,
"explorer.compactFolders": false,
"gitlens.gitCommands.skipConfirmations": [
"fetch:command",
"switch:command",
"stash-push:command"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment