-
Notifications
You must be signed in to change notification settings - Fork 0
/
vs-code-setting.json
293 lines (293 loc) · 9.41 KB
/
vs-code-setting.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
{
"workbench.colorTheme": "Solarized Dark",
"editor.detectIndentation": false,
"editor.renderWhitespace": "boundary",
"editor.acceptSuggestionOnEnter": "smart",
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"editor.cursorSmoothCaretAnimation": "on",
"editor.snippetSuggestions": "none",
"prettier.printWidth": 100,
"prettier.trailingComma": "es5",
"explorer.autoReveal": false,
"breadcrumbs.enabled": true,
"vsicons.projectDetection.autoReload": true,
"workbench.iconTheme": "vscode-icons",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.linkedEditing": false,
"explorer.compactFolders": false,
"editor.hover.delay": 750,
"editor.mouseWheelScrollSensitivity": 3,
"workbench.editor.enablePreview": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "html-template.tag.html",
"settings": {
"foreground": "#4791c4"
}
},
{
"scope": "html-template.tag.custom",
"settings": {
"foreground": "#17b1a4"
}
},
{
"scope": "html-template.ng.attributes.generic",
"settings": {
"foreground": "#99bb66"
}
},
{
"scope": "html-template.ng.interpolation.begin",
"settings": {
"foreground": "#c19977"
}
},
{
"scope": "html-template.ng.interpolation.end",
"settings": {
"foreground": "#c19977"
}
},
{
"scope": "entity.name.tag.html.ng",
"settings": {
"foreground": "#079164"
}
},
{
"scope": "html-template.ng.attributes.animationtrigger.prefix",
"settings": {
"foreground": "#ff5588"
}
},
{
"scope": "html-template.ng.attributes.animationtrigger.variable",
"settings": {
"foreground": "#ff5588"
}
},
{
"scope": "punctuation.definition.ng-binding-name.begin.html",
"settings": {
"foreground": "#808080"
}
},
{
"scope": "punctuation.definition.ng-binding-name.end.html",
"settings": {
"foreground": "#808080"
}
},
{
"scope": "html-template.ng.attributes.event-handler",
"settings": {
"foreground": "#f18080"
}
},
{
"scope": "html-template.ng.attributes.input-binding.animationTrigger.prefix",
"settings": {
"foreground": "#ff5588"
}
},
{
"scope": "html-template.ng.attributes.input-binding.first-level",
"settings": {
"foreground": "#c19977"
}
},
{
"scope": "html-template.ng.attributes.input-binding.second-level",
"settings": {
"foreground": "#c19977"
}
},
{
"scope": "html-template.ng.attributes.input-binding.third-level",
"settings": {
"foreground": "#c19977"
}
},
{
"scope": "html-template.ng.attributes.prefix.sugar",
"settings": {
"foreground": "#cc4477"
}
},
{
"scope": "html-template.ng.attributes.suffix.sugar",
"settings": {
"foreground": "#cc4477"
}
},
{
"scope": "html-template.ng.attributes.template.prefix",
"settings": {
"foreground": "#dd3355"
}
},
{
"scope": "html-template.ng.attributes.template.variable",
"settings": {
"foreground": "#dd3355"
}
}
]
},
"editor.semanticTokenColorCustomizations": {
"enabled": true,
"rules": {
"function": "#17b1a4",
"method": "#1ba9c2",
"class": "#df4336",
"type": "#CB4B16",
"interface": "#CB4B16",
"typeParameter": "#cb7616",
"property.declaration": {
"bold": true
},
"string": "#42a12a",
"*.deprecated": "#FF77BB",
"parameter": "#bbbbbb"
}
},
"workbench.colorCustomizations": {
"editorInlayHint.foreground": "#AAAAAA"
},
"vsicons.presets.tsOfficial": true,
"workbench.editor.wrapTabs": true,
"[csharp]": {
"editor.codeActionsOnSave": {},
"editor.formatOnSave": false,
"editor.tabSize": 4
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[plaintext]": {
"editor.wordWrap": "on",
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false
},
"[markdown]": {
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.formatOnSave": false
},
"vsicons.dontShowNewVersionMessage": true,
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"editor.guides.bracketPairs": true,
"editor.bracketPairColorization.enabled": false,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"search.exclude": {
"**/.angular/cache": true
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock",
"*.component.ts": "${capture}.component.html,${capture}.component.scss"
},
"[yaml]": {
"editor.formatOnSave": false,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced"
},
"editor.stickyScroll.enabled": true,
"editor.stickyScroll.maxLineCount": 10,
"vscode-angular-html.htmlCustomTags": "#17b1a4",
"vscode-angular-html.angularExpression": "#c19977",
"vscode-angular-html.htmlDoctypeAttributes": "",
"vscode-angular-html.htmlDoctypeExclamation": "",
"vscode-angular-html.htmlDoctypeElement": "",
"vscode-angular-html.dtdDoctypeExclamation": "",
"vscode-angular-html.dtdDoctypeElement": "",
"vscode-angular-html.dtdDoctypeQuantifier": "",
"vscode-angular-html.dtdDoctypeQualifier": "",
"vscode-angular-html.htmlEntitiesAmpersand": "",
"vscode-angular-html.htmlEntitiesSemicolon": "",
"vscode-angular-html.htmlGenericAttributesFollowedByParameter": "#99bb66",
"vscode-angular-html.htmlEventsAttributes": "",
"vscode-angular-html.htmlAttributeValueSeparator": "",
"vscode-angular-html.htmlTags": "#4791c4",
"vscode-angular-html.angularAndAngularMaterialElementTags": "#079164",
"vscode-angular-html.htmlScriptAttributesLanguageIdentifier": "",
"vscode-angular-html.htmlStyleAttributesLanguageIdentifier": "",
"vscode-angular-html.primeNgElementTags": "",
"vscode-angular-html.svgTags": "",
"vscode-angular-html.svgDAttributePathCommands": "",
"vscode-angular-html.angularAnimationTriggerPrefix": "#ff5588",
"vscode-angular-html.angularAnimationTriggerVariableName": "#ff5588",
"vscode-angular-html.angularEventHandlerName": "#f18080",
"vscode-angular-html.angularBindingAttributeDelimiter": "#808080",
"vscode-angular-html.angularOneWayBindingAnimationTriggerDecorator": "#ff5588",
"vscode-angular-html.angularOneWayBindingFirstLevelDepth": "#c19977",
"vscode-angular-html.angularOneWayBindingSecondLevelDepth": "#c19977",
"vscode-angular-html.angularOneWayBindingThirdLevelDepth": "#c19977",
"vscode-angular-html.angularPrefixedAttributesLetPrefix": "",
"vscode-angular-html.angularPrefixedAttributesRefPrefix": "",
"vscode-angular-html.angularPrefixedAttributesVariableName": "",
"vscode-angular-html.angularPrefixedAttributesRxjsSuffix": "",
"vscode-angular-html.angularSyntaxSugarAttributesPrefix": "#cc4477",
"vscode-angular-html.angularSyntaxSugarAttributesName": "#cc4477",
"vscode-angular-html.angularTemplateVariablePrefix": "#dd3355",
"vscode-angular-html.angularTemplateVariableName": "#dd3355",
"vscode-angular-html.angularExpressionOperatorsAndNavigatorsColor": "",
"vscode-angular-html.xmlStylesheetAttributesLanguageIdentifier": "",
"vscode-angular-html.xmlTagNamespaceDivider": "",
"vscode-angular-html.xmlTagNamespaceSuffix": "",
"vscode-angular-html.xmlAttributeNamespaceDivider": "",
"vscode-angular-html.xmlAttributeNamespaceSuffix": "",
"vscode-angular-html.colorCustomizations": true,
"bicep.enableSurveys": false,
"git.openRepositoryInParentFolders": "never",
"editor.cursorSurroundingLines": 30,
"editor.parameterHints.enabled": false,
"workbench.editor.showTabs": false,
"explorer.openEditors.visible": 1,
"csharp.inlayHints.enableInlayHintsForTypes": true,
"csharp.inlayHints.enableInlayHintsForLambdaParameterTypes": false,
"csharp.inlayHints.enableInlayHintsForImplicitVariableTypes": true,
"csharp.inlayHints.enableInlayHintsForImplicitObjectCreation": false,
"editor.inlayHints.fontSize": 13,
"editor.inlayHints.padding": true
}