chore: 移除 VSCode 配置并更新 .gitignore

- 从项目中删除了 .vscode 文件夹下的所有 VSCode 配置文件
- 在 .gitignore 中添加 .lingma 目录,避免 Lingma相关文件被 Git 跟踪
This commit is contained in:
清晨
2025-04-21 17:37:31 +08:00
parent 4d57f061df
commit 2ab968ba59
3 changed files with 2 additions and 48 deletions

2
.gitignore vendored
View File

@@ -22,6 +22,7 @@ target/
### IntelliJ IDEA ###
.idea
.vscode
.lingma
*.iws
*.iml
*.ipr
@@ -51,3 +52,4 @@ nbdist/
/ruoyi-admin/logs/
/ruoyi-mall-api/logs/
/.vscode/
/.lingma/

42
.vscode/launch.json vendored
View File

@@ -1,42 +0,0 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "MallAdminApplication",
"request": "launch",
"mainClass": "org.dromara.MallAdminApplication",
"projectName": "ruoyi-admin"
},
{
"type": "java",
"name": "MallApiApplication",
"request": "launch",
"mainClass": "org.dromara.MallApiApplication",
"projectName": "ruoyi-mall-api"
},
{
"type": "java",
"name": "MonitorAdminApplication",
"request": "launch",
"mainClass": "org.dromara.monitor.admin.MonitorAdminApplication",
"projectName": "ruoyi-monitor-admin"
},
{
"type": "java",
"name": "SnailJobServerApplication",
"request": "launch",
"mainClass": "org.dromara.snailjob.SnailJobServerApplication",
"projectName": "ruoyi-snailjob-server"
}
]
}

View File

@@ -1,6 +0,0 @@
{
"java.configuration.updateBuildConfiguration": "automatic",
"java.compile.nullAnalysis.mode": "automatic",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx4G -Xms100m -Xlog:disable",
"java.debug.settings.onBuildFailureProceed": true
}