-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVisualStudioCode.json
78 lines (69 loc) · 1.8 KB
/
VisualStudioCode.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
{
"workbench.colorTheme": "Default Dark+",
"workbench.sideBar.location": "right",
"workbench.statusBar.visible": false,
"diffEditor.codeLens": true,
"editor.rulers": [],
"editor.formatOnType": false,
"editor.formatOnSave": false,
"editor.formatOnPaste": true,
"editor.minimap.enabled": false,
"editor.mouseWheelZoom": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": false,
"files.trimFinalNewlines": true,
"files.associations": {
"*.razor": "aspnetcorerazor",
"*.cshtml": "html"
},
"omnisharp.enableRoslynAnalyzers": true,
"omnisharp.organizeImportsOnFormat": true,
"omnisharp.enableImportCompletion": true,
"omnisharp.enableEditorConfigSupport": true,
"omnisharp.enableDecompilationSupport": true,
"explorer.confirmDelete": false,
"csharp.referencesCodeLens.enabled": false,
"window.zoomLevel": 4,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"debug.confirmOnExit": "always",
"debug.onTaskErrors": "abort",
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"[aspnetcorerazor]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"emmet.includeLanguages": {
"razor": "html"
},
"prettier.enabledLanguageIds": [
"css",
"elm",
"flow",
"graphql",
"handlebars",
"html",
"java",
"javascript",
"javascriptreact",
"json",
"jsonc",
"less",
"markdown",
"mdx",
"php",
"postcss",
"ruby",
"scss",
"solidity",
"svelte",
"svg",
"typescript",
"typescriptreact",
"twig",
"vue",
"xml",
"yaml"
],
}