-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.code-workspace
More file actions
115 lines (115 loc) · 2.8 KB
/
project.code-workspace
File metadata and controls
115 lines (115 loc) · 2.8 KB
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
{
"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",
"java.configuration.updateBuildConfiguration": "automatic",
"java.completion.importOrder": [
"#"
],
"java.debug.settings.onBuildFailureProceed": true,
"java.import.exclusions": [
"**/node_modules/**",
"**/.metadata/**",
"**/archetype-resources/**",
"**/META-INF/maven/**",
"**/target/**"
],
"files.exclude": {
"**/target": true
},
"scm.defaultViewMode": "tree",
"diffEditor.renderSideBySide": false,
"github.copilot.chat.summarizeAgentConversationHistory.enabled": false,
"github.copilot.chat.languageContext.fix.typescript.enabled": true,
"github.copilot.chat.languageContext.inline.typescript.enabled": true,
"github.copilot.chat.languageContext.typescript.enabled": true,
"chat.agent.maxRequests": 1000,
"files.associations": {
"*.graphql": "graphql",
"*.graphqls": "graphql"
},
"[java]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[json]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[graphql]": {
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"editor.codeActionsOnSave": {
"source.organizeImports.biome": "explicit"
},
"yaml.validate": true,
"yaml.schemas": {
"https://json.schemastore.org/liquibase-3.2.json": "**/db/changelog/*.yaml"
}
},
"extensions": {
"recommendations": [
"biomejs.biome",
"esbenp.prettier-vscode",
"editorconfig.editorconfig",
"github.copilot",
"github.copilot-chat",
"vscjava.vscode-java-pack",
"redhat.java",
"vscjava.vscode-maven",
"bradlc.vscode-tailwindcss",
"github.vscode-pull-request-github",
"davidanson.vscode-markdownlint",
"streetsidesoftware.code-spell-checker",
"formulahendry.auto-rename-tag",
"GraphQL.vscode-graphql",
"GraphQL.vscode-graphql-syntax"
]
}
}