Skip to content

Instantly share code, notes, and snippets.

@Tharlys10
Created June 9, 2021 02:28
Show Gist options
  • Save Tharlys10/ee550c43fb1e2626e525e818819ee223 to your computer and use it in GitHub Desktop.
Save Tharlys10/ee550c43fb1e2626e525e818819ee223 to your computer and use it in GitHub Desktop.
Settings My VsCode
{
"workbench.startupEditor": "newUntitledFile",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Omni",
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"editor.fontWeight": "bold",
"git.autofetch": true,
"files.exclude": {
"**/node_modules": true
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.tabSize": 2,
"editor.formatOnSave": true,
"material-icon-theme.folders.color": "#ef5350",
"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",
"eslint-config": "tools",
"datasources": "database",
"decorators": "guard",
"resolvers": "other",
"moduleprovider": "global",
"schemaprovider": "graphql",
"*": "core"
},
"material-icon-theme.folders.theme": "specific",
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.controller.ts": "nest-controller",
"*.module.ts": "nest-module",
"*.service.ts": "nest-service",
"*.middleware.ts": "nest-middleware",
"*.filter.ts": "nest-filter",
"*.pipe.ts": "nest-pipe",
"*.gateway.ts": "nest-gateway",
"*.decorator.ts": "nest-decorator",
"*.guard.ts": "nest-guard",
"*.resolver.ts": "graphql",
"*.input.ts": "graphql",
"*.config.ts": "settings",
},
"editor.fontSize": 15,
"explorer.compactFolders": false,
"tabnine.experimentalAutoImports": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment