26 lines
677 B
JSON
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"
|
|
}
|
|
} |