Skip to content

Instantly share code, notes, and snippets.

@Lissone
Last active June 25, 2021 16:06
Show Gist options
  • Save Lissone/56ee7ccc3e19a7069d87103d5ff24ce7 to your computer and use it in GitHub Desktop.
Save Lissone/56ee7ccc3e19a7069d87103d5ff24ce7 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.lineHeight": 20,
"editor.fontLigatures": true,
"editor.renderLineHighlight": "gutter",
"window.zoomLevel": -1,
"workbench.colorTheme": "Omni",
"workbench.iconTheme": "material-icon-theme",
"explorer.compactFolders": false,
"window.menuBarVisibility": "toggle",
"typescript.updateImportsOnFileMove.enabled": "never",
"typescript.preferences.quoteStyle": "single",
"javascript.preferences.quoteStyle": "single",
"tabnine.experimentalAutoImports": true,
"files.autoSave": "afterDelay",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
// "**/node_modules": true
},
"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",
"kube": "kubernetes"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.webpack.js": "webpack"
},
"emmet.syntaxProfiles": {
"xml": {
"attr_quotes": "single"
},
"html": {
"attr_quotes": "single"
},
"js": {
"attr_quotes": "single",
"self_closing_tag": true
},
"jsx": {
"attr_quotes": "single",
"self_closing_tag": true
},
"tsx": {
"attr_quotes": "single",
"self_closing_tag": true
}
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"cSpell.language": "en,pt,pt_PT",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment