From 4aab7890c3814a0c3e514b8218af0a3ac75547ea Mon Sep 17 00:00:00 2001 From: Tw93 Date: Sat, 3 Jan 2026 12:30:26 +0800 Subject: [PATCH] Remove VSCode Swift configurations, update .gitignore for build and test artifacts, and improve `clean` and `test` script robustness. --- .gitignore | 14 +++++++------- .vscode/launch.json | 44 -------------------------------------------- .vscode/tasks.json | 38 -------------------------------------- 3 files changed, 7 insertions(+), 89 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json diff --git a/.gitignore b/.gitignore index 68a947f..ec89e7e 100644 --- a/.gitignore +++ b/.gitignore @@ -51,16 +51,16 @@ GEMINI.md # Go build artifacts (development) cmd/analyze/analyze cmd/status/status +/status +/analyze +mole-analyze # Go binaries bin/analyze-go bin/status-go bin/analyze-darwin-* bin/status-darwin-* -# Swift / Xcode -.build/ -.swiftpm/ -*.xcodeproj -*.xcworkspace -DerivedData/ -*.app +# Test artifacts +tests/tmp-*/ +tests/*.tmp +tests/*.log diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index c51d5fa..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "configurations": [ - { - "type": "swift", - "request": "launch", - "name": "Debug Mole", - "args": [], - "cwd": "${workspaceFolder}/app", - "target": "Mole", - "configuration": "debug", - "preLaunchTask": "swift: Build Debug Mole (app)" - }, - { - "type": "swift", - "request": "launch", - "name": "Release Mole", - "args": [], - "cwd": "${workspaceFolder}/app", - "target": "Mole", - "configuration": "release", - "preLaunchTask": "swift: Build Release Mole (app)" - }, - { - "type": "swift", - "request": "launch", - "args": [], - "cwd": "${workspaceFolder:Mole}/app", - "name": "Debug Mole (app)", - "target": "Mole", - "configuration": "debug", - "preLaunchTask": "swift: Build Debug Mole (app)" - }, - { - "type": "swift", - "request": "launch", - "args": [], - "cwd": "${workspaceFolder:Mole}/app", - "name": "Release Mole (app)", - "target": "Mole", - "configuration": "release", - "preLaunchTask": "swift: Build Release Mole (app)" - } - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 3caae56..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "swift: Build Debug Mole (app)", - "type": "shell", - "command": "swift", - "args": ["build", "-c", "debug"], - "options": { - "cwd": "${workspaceFolder}/app" - }, - "group": { - "kind": "build", - "isDefault": true - }, - "presentation": { - "reveal": "always", - "panel": "shared" - }, - "problemMatcher": ["$swiftc"] - }, - { - "label": "swift: Build Release Mole (app)", - "type": "shell", - "command": "swift", - "args": ["build", "-c", "release"], - "options": { - "cwd": "${workspaceFolder}/app" - }, - "group": "build", - "presentation": { - "reveal": "always", - "panel": "shared" - }, - "problemMatcher": ["$swiftc"] - } - ] -}