-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathproyecto-formativo.code-workspace
More file actions
71 lines (71 loc) · 1.62 KB
/
proyecto-formativo.code-workspace
File metadata and controls
71 lines (71 loc) · 1.62 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
{
"folders": [
{
"name": "📦 Base de datos (migraciones · seeders · factories)",
"path": "database"
},
{
"name": "🧪 Tests (autograding)",
"path": "tests/Feature"
},
{
"name": "📋 Evidencias (README de cada una)",
"path": "evidencias"
},
{
"name": "📖 Proyecto",
"path": "."
}
],
"settings": {
"files.exclude": {
"app": true,
"bootstrap": true,
"config": true,
"public": true,
"resources": true,
"routes": true,
"storage": true,
"vendor": true,
"node_modules": true,
".github": true,
".phpunit.result.cache": true,
".npmrc": true,
".gitattributes": true,
".editorconfig": true,
".env": true,
".env.example": true,
"artisan": true,
"composer.json": true,
"composer.lock": true,
"package.json": true,
"package-lock.json": true,
"phpunit.xml": true,
"vite.config.js": true,
"tsconfig.json": true,
"tests/Unit": true,
"tests/TestCase.php": true,
"database/database.sqlite": true,
"database/.gitignore": true
},
"search.exclude": {
"vendor": true,
"node_modules": true,
"storage": true,
"public/build": true
},
"files.associations": {
"*.php": "php"
},
"explorer.compactFolders": false,
"workbench.colorTheme": "Default Dark Modern",
"editor.formatOnSave": false
},
"extensions": {
"recommendations": [
"bmewburn.vscode-intelephense-client",
"onecentlin.laravel-blade",
"ms-azuretools.vscode-docker"
]
}
}