-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranscript-management.code-workspace
More file actions
54 lines (54 loc) · 1.56 KB
/
Copy pathtranscript-management.code-workspace
File metadata and controls
54 lines (54 loc) · 1.56 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
{
"folders": [
{
"name": "📁 Transcript Management",
"path": "."
}
],
"settings": {
"workbench.colorCustomizations": {
"activityBar.background": "#1E5595",
"titleBar.activeBackground": "#1E5595",
"titleBar.activeForeground": "#FFFFFF"
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.blade.php": "${capture}.*.blade.php",
"*.php": "${capture}.php.bak, ${capture}.test.php",
"composer.json": "composer.lock, composer.*.json",
"package.json": "package-lock.json, yarn.lock"
}
},
"launch": {
"configurations": [],
"compounds": []
},
"extensions": {
"recommendations": [
"bmewburn.vscode-intelephense-client",
"onecentlin.laravel-blade",
"amiralizadeh9480.laravel-extra-intellisense",
"mohamedbenhida.laravel-intellisense",
"alefragnani.project-manager",
"alefragnani.bookmarks"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Open File Explorer",
"type": "shell",
"command": "start .",
"windows": {
"command": "explorer ."
},
"group": "none",
"presentation": {
"reveal": "silent",
"panel": "shared"
}
}
]
}
}