From 115f1d5db3aff276a0f08460734e76fb6062e630 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sun, 22 Jan 2023 12:05:46 +0100 Subject: [PATCH] removed vscode --- .gitignore | 1 + .vscode/launch.json | 45 --------------------------------------------- 2 files changed, 1 insertion(+), 45 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 2f7896d..a221ac1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ target/ +.vscode/ diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 26ce83f..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,45 +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 'char'", - "cargo": { - "args": [ - "build", - "--bin=char", - "--package=char" - ], - "filter": { - "name": "char", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in executable 'char'", - "cargo": { - "args": [ - "test", - "--no-run", - "--bin=char", - "--package=char" - ], - "filter": { - "name": "char", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - } - ] -} \ No newline at end of file