-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpr-leaderboard.code-workspace
64 lines (64 loc) · 1.22 KB
/
pr-leaderboard.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
{
"folders": [
{
"path": "Solution"
},
{
"path": "Leaderboard"
},
{
"path": "Leaderboard.Tests"
},
{
"path": "ClientApp"
},
{
"path": "Containers"
},
{
"path": ".devcontainer"
}
],
"launch": {
"configurations": [],
"compounds": [
{
"name": "Debug",
"configurations": [
"Launch Webpack Server",
"Lauch dotnet Server",
"Launch Chrome"
],
}
]
},
"settings": {
"jest.disabledWorkspaceFolders": [
"Solution",
"Leaderboard",
"Leaderboard.Tests",
"Containers",
".devcontainer"
],
"omnisharp.enableRoslynAnalyzers": true,
"remote.extensionKind": {
"ms-azuretools.vscode-docker": "workspace"
},
"omnisharp.loggingLevel": "warning",
"omnisharp.minFindSymbolsFilterLength": 2,
"omnisharp.projectLoadTimeout": 20,
"vssolution.trackActiveItem": true,
"omnisharp.defaultLaunchSolution": "Solution/pr-leaderboard.sln",
"dotnet-test-explorer.testProjectPath": "**/*.Tests.csproj",
"jest.autoEnable": false,
"omnisharp.enableEditorConfigSupport": true,
},
"extensions": {
"recommendations": [
"gruntfuggly.todo-tree",
"fernandoescolar.vscode-solution-explorer",
"eamodio.gitlens",
"editorconfig.editorconfig"
]
}
}