diff --git a/.gitignore b/.gitignore index 9026c77..81cf465 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ /target -.vscode +/.vscode diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 8d1ef77..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "lldb", - "request": "launch", - "name": "Debug executable 'eyes'", - "cargo": { - "args": ["build", "--bin=eyes", "--package=eyes"], - "filter": { - "name": "eyes", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in executable 'eyes'", - "cargo": { - "args": ["test", "--no-run", "--bin=eyes", "--package=eyes"], - "filter": { - "name": "eyes", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - } - ] -}