-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode-settings.json
86 lines (84 loc) · 2.77 KB
/
vscode-settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreview": false,
"explorer.confirmDragAndDrop": false,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.tsserver.log": "verbose",
"typescript.suggest.autoImports": true,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.fontFamily": "monospace",
"terminal.integrated.fontSize": 10,
"terminal.integrated.lineHeight": 1,
"editor.tabSize": 2,
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"explorer.confirmDelete": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true,
"source.fixAll.stylelint": true
},
"editor.fontFamily": "'Fira Code'",
"editor.formatOnType": true,
"editor.fontLigatures": true,
"editor.fontSize": 12,
"editor.suggestSelection": "first",
"editor.parameterHints.enabled": false,
"editor.semanticHighlighting.enabled": false,
"editor.defaultFormatter": "ms-dotnettools.csharp",
"diffEditor.codeLens": true,
"extensions.ignoreRecommendations": true,
"scm.inputFontFamily": "Fira Code",
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"gitlens.codeLens.scopes": [
"document"
]
},
"window.zoomLevel": 1,
"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.activeIconPack": "nest",
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.webpack.js": "webpack"
},
}