1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 13:16:47 +00:00

Remove VSCode Swift configurations, update .gitignore for build and test artifacts, and improve clean and test script robustness.

This commit is contained in:
Tw93
2026-01-03 12:30:26 +08:00
parent 4aef2de0fc
commit 4aab7890c3
3 changed files with 7 additions and 89 deletions

14
.gitignore vendored
View File

@@ -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

44
.vscode/launch.json vendored
View File

@@ -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)"
}
]
}

38
.vscode/tasks.json vendored
View File

@@ -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"]
}
]
}