2024-09-17

This commit is contained in:
gcch 2024-09-17 12:57:51 +02:00
commit 82040ce0fb
543 changed files with 5727 additions and 4898 deletions

22
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,22 @@
{
"configurations": [
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"hostname": "0.0.0.0",
"port": 9003,
"pathMappings": {
"/var/www/html": "${workspaceFolder}"
},
"preLaunchTask": "DDEV: Enable Xdebug",
"postDebugTask": "DDEV: Disable Xdebug",
"skipFiles": [
"**/vendor/**/*.php",
"**/wp-admin/**/*.php",
"**/wp-includes/**/*.php",
"**/wp-blog-header.php"
]
}
]
}

View file

@ -2,12 +2,14 @@
"cSpell.words": [
"controle",
"controles",
"Crell",
"defini",
"deplie",
"ENTETE",
"etats",
"ETATS",
"exts",
"generique",
"gere",
"glitchtip",
"GLITCHTIP",
@ -15,9 +17,11 @@
"Proprietes",
"reponse",
"requete",
"resultat",
"selecteur",
"selecteurs",
"Selectionne",
"Simplifiee",
"souleve",
"tabpanel",
"tete",
@ -33,5 +37,8 @@
"twiggy.inlayHints.block": true,
"twiggy.inlayHints.macro": true,
"twiggy.inlayHints.macroArguments": true,
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"terminal.integrated.env.osx": {
"PATH": "${env:HOME}/.config/VSCodium/User/globalStorage/biati.ddev-manager/exposed-commands:${env:PATH}"
}
}

23
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,23 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "DDEV: Enable Xdebug",
"type": "shell",
"command": "ddev xdebug on",
"presentation": {
"reveal": "silent",
"close": true
}
},
{
"label": "DDEV: Disable Xdebug",
"type": "shell",
"command": "ddev xdebug off",
"presentation": {
"reveal": "silent",
"close": true
}
}
]
}