-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemyo.code-workspace
116 lines (108 loc) · 2.38 KB
/
Demyo.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
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
116
{
"folders": [
{
"path": "source"
},
{
"path": "integration"
}
],
"settings": {
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"editor.tabSize": 4,
"java.configuration.updateBuildConfiguration": "automatic",
// See https://github.com/vuejs/eslint-plugin-vue/issues/976
"eslint.workingDirectories": [
"./demyo-vue-frontend"
],
"eslint.validate": [
"javascript",
"vue",
"html"
],
"stylelint.enable": true,
"stylelint.validate": [
"vue"
],
"i18n-ally.forceEnabled": true,
"i18n-ally.localesPaths": "demyo-vue-frontend/src/locales",
"jest.rootPath": "demyo-vue-frontend",
"jest.pathToJest": "node_modules/.bin/jest",
"java.checkstyle.configuration": "${workspaceFolder}/demyo-checkstyle-config.xml",
"java.format.settings.url": "../config/eclipse-formatter.xml",
"files.watcherExclude": {
"**/target/**": true
},
"search.exclude": {
"**/target": true
},
"files.eol": "\n",
"java.compile.nullAnalysis.mode": "disabled",
"java.cleanup.actionsOnSave": [
"addOverride",
"addDeprecated"
],
"java.completion.guessMethodArguments": true,
"java.saveActions.organizeImports": true,
"java.completion.importOrder": [
"java",
"javax",
"jakarta",
"org",
"com",
"org.demyo",
"#",
""
],
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"testing.openTesting": "neverOpen",
"jest.outputConfig": {
"revealOn": "run",
"revealWithFocus": "none",
"clearOnRun": "none"
},
"eslint.experimental.useFlatConfig": true
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Maven install (dev, skip tests)",
"type": "shell",
"command": "./mvnw -B install -Pdev -DskipTests",
"group": "build"
},
{
"label": "Maven install (dev, tests)",
"type": "shell",
"command": "./mvnw -B install -Pdev",
"group": "build"
},
{
"label": "Maven clean",
"type": "shell",
"command": "./mvnw -B clean",
"group": "build"
},
{
"label": "Maven clean install with coverage",
"type": "shell",
"command": "./mvnw -B clean install -DCI=true -Pcoverage,dev",
"group": "build"
},
{
"label": "Maven check dependencies",
"type": "shell",
"command": "./mvnw -B site dev,check-deps -DskipTests",
"group": "build"
},
]
}
}