forked from nextcloud/cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookbook.code-workspace
62 lines (62 loc) · 1.59 KB
/
cookbook.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
{
"folders": [
{
"path": "."
},
{
"path": "../..",
"name": "base"
},
{
"path": "tests/phpunit/vendor",
"name": "phpunit-composer"
}
],
"settings": {
"editor.insertSpaces": false,
"files.exclude": {
".github/actions/run-tests/volumes/cookbook/**/*": true,
".github/actions/run-tests/volumes/coverage/**/*": true,
".github/actions/run-tests/volumes/data/**/*": true,
".github/actions/run-tests/volumes/dumps/**/*": true,
".github/actions/run-tests/volumes/mysql/**/*": true,
".github/actions/run-tests/volumes/output/**/*": true,
".github/actions/run-tests/volumes/postgres/**/*": true,
".github/actions/run-tests/volumes/nextcloud/custom_apps/cookbook/**/*": true,
".github/actions/run-tests/volumes/**/*": true
},
"files.watcherExclude": {
".github/actions/run-tests/volumes/nextcloud/custom_apps/cookbook/**/*": true,
".github/actions/run-tests/volumes/nextcloud/**/*": true
},
//"intelephense.trace.server": "message",
"intelephense.files.exclude": [
"**/.git/**",
"**/.svn/**",
"**/.hg/**",
"**/CVS/**",
"**/.DS_Store/**",
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**/{Tests,tests}/**",
"**/.history/**",
"**/vendor/**/vendor/**",
// "3rdparty/**"
".github/actions/**",
],
"cSpell.words": [
"Nextcloud"
],
"path-intellisense.mappings": {
"cookbook": "${workspaceFolder}/src",
},
"editor.quickSuggestions": {
"other": "on",
"comments": "on",
"strings": "on"
},
"intelephense.environment.includePaths": [
"${workspaceFolder:base}/3rdparty/doctrine/dbal/src"
]
}
}