This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
payroll-processor.code-workspace
80 lines (77 loc) · 1.89 KB
/
payroll-processor.code-workspace
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
{
"folders": [
{
"path": "docs",
"name": "docs"
},
{
"path": "api",
"name": "api"
},
{
"path": "client",
"name": "angular"
},
{
"path": "vue-client",
"name": "vue"
},
{
"path": ".",
"name": "root"
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"node_modules": true,
"api": true,
"client": true,
"docs": true,
"**/bin": true,
"**/obj": true,
"**/dist": true
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
},
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp",
/* Not enabled yet:
https://github.com/OmniSharp/omnisharp-vscode/issues/2796
https://github.com/OmniSharp/omnisharp-roslyn/pull/1581
*/
"editor.codeActionsOnSave": {}
},
"omnisharp.defaultLaunchSolution": "PayrollProcessor.sln",
"omnisharp.autoStart": true,
"omnisharp.enableEditorConfigSupport": true,
"omnisharp.enableRoslynAnalyzers": true,
"omnisharp.useEditorFormattingSettings": true
},
"extensions": {
"recommendations": [
"ms-azuretools.vscode-azurefunctions",
"ms-dotnettools.csharp",
"esbenp.prettier-vscode",
"DavidAnson.vscode-markdownlint",
"EditorConfig.EditorConfig",
"ms-vscode.vscode-typescript-tslint-plugin",
"dozerg.tsimportsorter",
"stylelint.vscode-stylelint",
"k--kato.docomment",
"jchannon.csharpextensions",
"vstirbu.vscode-mermaid-preview",
"ms-azuretools.vscode-cosmosdb",
"johnsoncodehk.volar",
"johnsoncodehk.vscode-typescript-vue-plugin"
]
}
}