From 2ab968ba59b397e9ccf02d1ceebcd67c920bf043 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B8=85=E6=99=A8?= <136767481@qq.com> Date: Mon, 21 Apr 2025 17:37:31 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E7=A7=BB=E9=99=A4=20VSCode=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=B9=B6=E6=9B=B4=E6=96=B0=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 从项目中删除了 .vscode 文件夹下的所有 VSCode 配置文件 - 在 .gitignore 中添加 .lingma 目录,避免 Lingma相关文件被 Git 跟踪 --- .gitignore | 2 ++ .vscode/launch.json | 42 ------------------------------------------ .vscode/settings.json | 6 ------ 3 files changed, 2 insertions(+), 48 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index e95cca7..276ab0a 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 24a5833..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 35c80c8..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -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 -} \ No newline at end of file