Files
leonapp/.vscode/settings.json
Leonmmcoset 7f4b503173 chore: 更新配置文件并添加VS Code设置
添加VS Code工作区设置文件,包含Git和文件排除配置
更新config.php中的数据库和SMTP密码配置
删除旧的config.php.bak备份文件
2025-07-12 18:14:41 +08:00

22 lines
548 B
JSON

{
"git.ignoreLimitWarning": true,
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.path": "git",
"git.terminalAuthentication": true,
"git.ignoreMissingGitWarning": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"config.php": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"config.php": true
}
}