From a627af3b25bb0acd51348545c356ade7fd45b88d Mon Sep 17 00:00:00 2001 From: mux Date: Mon, 12 Aug 2024 12:05:37 +0200 Subject: [PATCH] remove vscode folder --- .gitignore | 1 + .vscode/launch.json | 72 --------------------------------------------- 2 files changed, 1 insertion(+), 72 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 96ef6c0..0024e1e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target Cargo.lock +.vs-code diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 434fd91..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,72 +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": "Launch", - "program": "${workspaceFolder}/", - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in library 'Uno'", - "cargo": { - "args": [ - "test", - "--no-run", - "--lib", - "--package=Uno" - ], - "filter": { - "name": "Uno", - "kind": "lib" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug executable 'Uno'", - "cargo": { - "args": [ - "build", - "--bin=Uno", - "--package=Uno" - ], - "filter": { - "name": "Uno", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in executable 'Uno'", - "cargo": { - "args": [ - "test", - "--no-run", - "--bin=Uno", - "--package=Uno" - ], - "filter": { - "name": "Uno", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - } - ] -} \ No newline at end of file