mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 15:39:42 +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:
14
.gitignore
vendored
14
.gitignore
vendored
@@ -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
44
.vscode/launch.json
vendored
@@ -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
38
.vscode/tasks.json
vendored
@@ -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"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user