Files
shop-platform/.vscode/settings.json
2025-10-29 17:49:40 +08:00

26 lines
677 B
JSON

{
"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"
}
}