diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index ef27314..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "type": "lldb", - "request": "launch", - "name": "Run", - "program": "${workspaceFolder}/.build/debug/xcodes", - "cwd": "${workspaceFolder}", - "preLaunchTask": "swift-build" - } - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index b94ccc9..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "swift-build", - "type": "shell", - "command": "swift", - "args": ["build"], - "group": { - "kind": "build", - "isDefault": true - } - }, - { - "label": "swift-test", - "type": "shell", - "command": "swift", - "args": ["test"], - "group": { - "kind": "test", - "isDefault": true - }, - "problemMatcher": { - "owner": "sourcekit-lsp", - "fileLocation": "absolute", - "pattern": { - "regexp": "^(?.*):(?\\d+):\\s+(?warning|error):\\s+(?.*)$", - "file": 1, - "line": 2, - "severity": 3, - "message": 4 - } - } - } - ] -}