Skip to content

Instantly share code, notes, and snippets.

@aluiziodeveloper
Created June 12, 2024 15:23
Show Gist options
  • Save aluiziodeveloper/a63acc87c78a85dbf6405a2330a313cf to your computer and use it in GitHub Desktop.
Save aluiziodeveloper/a63acc87c78a85dbf6405a2330a313cf to your computer and use it in GitHub Desktop.
Configuração atual do meu ambiente de desenvolvimento com o Visual Studio Code.
{
"editor.minimap.enabled": false,
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 16,
"editor.lineHeight": 30,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"explorer.compactFolders": false,
"editor.renderWhitespace": "boundary",
"editor.rulers": [80, 120],
"material-icon-theme.activeIconPack": "nest",
"material-icon-theme.folders.associations": {
"infra": "app",
"infrastructure": "app",
"domain": "core",
"products": "console",
"orders": "batch",
"customers": "contract",
"transaction": "custom",
"repository": "mappings",
"useCases": "components",
"application": "vm",
"features": "resource",
"counter": "update",
"entity": "class",
"entities": "class",
"value-objects": "stack",
"schemas": "class",
"stores": "ngrx-reducer",
"typeorm": "database",
"repositories": "mappings",
"in-memory": "less",
"http": "container",
"migrations": "tools",
"modules": "stack",
"implementations": "core",
"dtos": "typescript",
"dto": "typescript",
"fakes": "mock",
"unit": "test",
"e2e": "test",
"integration": "test",
"roles": "log",
"users": "admin",
"websockets": "pipe",
"hash-provider": "secure"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.int-spec.ts": "test-ts",
"*.e2e-spec.ts": "test-ts",
"vitest.config.ts": "vite",
"vitest.config.e2e.ts": "vite",
"*.pdf": "pdf"
},
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"editor.renderLineHighlight": "gutter",
"terminal.integrated.fontSize": 16,
"typescript.updateImportsOnFileMove.enabled": "always",
"window.zoomLevel": 1,
"javascript.inlayHints.parameterTypes.enabled": false,
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterTypes.enabled": false,
"javascript.inlayHints.enumMemberValues.enabled": true,
"javascript.inlayHints.functionLikeReturnTypes.enabled": false,
"[prisma]": {
"editor.formatOnSave": true
},
"workbench.editorAssociations": {
"*.png": "hediet.vscode-drawio"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"hediet.vscode-drawio.resizeImages": null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment