-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmodelserver-glspjava-emf-theia-example.code-workspace
More file actions
88 lines (88 loc) · 2.32 KB
/
Copy pathmodelserver-glspjava-emf-theia-example.code-workspace
File metadata and controls
88 lines (88 loc) · 2.32 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
{
"folders": [
{
"path": "./client"
},
{
"path": "./server/glsp-server"
},
{
"path": "./server/model-server"
}
],
"settings": {
"java.checkstyle.version": "8.44",
"java.checkstyle.configuration": "https://raw.githubusercontent.com/eclipse-emfcloud/emfcloud/master/codestyle/org.eclipse.emfcloud.checkstyle/src/main/resources/emfcloud-checkstyle-8.44.xml",
"java.configuration.updateBuildConfiguration": "automatic",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["javascript", "typescript"],
"prettier.prettierPath": "workflow/client/node_modules/prettier",
"search.exclude": {
"**/node_modules": true,
"**/lib": true
},
"task.autoDetect": "off",
"typescript.tsdk": "node_modules/typescript/lib",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"markdownlint.config": {
"no-inline-html": {
"allowed_elements": ["br", "details", "summary"]
}
}
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"DavidAnson.vscode-markdownlint",
"shengchen.vscode-checkstyle",
"vscjava.vscode-java-pack"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Build TaskList Servers",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"command": "yarn --cwd .. build:servers",
"problemMatcher": []
}
]
}
}