chore: add some files

This commit is contained in:
2025-10-29 17:49:40 +08:00
parent b7462657cd
commit b1ee21b2da
13 changed files with 150 additions and 33 deletions

26
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"php.validate.executablePath": "/usr/bin/php",
"php.validate.run": "onSave",
"debug.onTaskErrors": "showErrors",
"debug.internalConsoleOptions": "openOnSessionStart",
"debug.javascript.autoAttachFilter": "onlyWithFlag",
// PHP 智能提示
"php.suggest.basic": true,
"editor.quickSuggestions": {
"strings": true
},
// 文件排除
"files.exclude": {
"**/vendor": true,
"**/runtime": true,
"**/.git": true,
"**/node_modules": true
},
// 远程开发设置
"remote.extensionKind": {
"ms-vscode-remote.remote-containers": "ui"
}
}