-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.code-workspace
51 lines (51 loc) · 1.16 KB
/
project.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
{
"folders": [
{
"name": "Hephaestus",
"path": "./",
},
{
"name": "webapp",
"path": "./webapp",
},
{
"name": "server/application-server",
"path": "./server/application-server",
},
{
"name": "server/intelligence-service",
"path": "./server/intelligence-service",
},
{
"name": "server/webhook-ingest",
"path": "./server/webhook-ingest",
},
{
"name": "docs",
"path": "./docs",
}
],
"settings": {
"java.compile.nullAnalysis.mode": "automatic",
"python.terminal.activateEnvironment": true,
"python.terminal.activateEnvInCurrentTerminal": true,
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"java.configuration.updateBuildConfiguration": "interactive",
"java.completion.importOrder": ["#"],
},
"extensions": {
"recommendations": [
"vscjava.vscode-java-pack",
"redhat.java",
"vscjava.vscode-maven",
"ms-python.python",
"bradlc.vscode-tailwindcss",
"dbaeumer.vscode-eslint",
"github.vscode-pull-request-github",
"davidanson.vscode-markdownlint",
"streetsidesoftware.code-spell-checker",
"njpwerner.autodocstring",
"formulahendry.auto-rename-tag"
]
},
}