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