From f45c095cebe5f322197528693f8332848d16f917 Mon Sep 17 00:00:00 2001 From: Fedor Tolstonozhenko Date: Sat, 5 Oct 2024 00:54:23 +0200 Subject: [PATCH] Remove .vscode settings --- .vscode/launch.json | 122 -------------------------------------------- .vscode/tasks.json | 15 ------ 2 files changed, 137 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index ca78567..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,122 +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 unit tests in library 'core'", - "cargo": { - "args": [ - "test", - "--no-run", - "--lib", - "--package=opensi" - ], - "filter": { - "name": "core", - "kind": "lib" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug executable 'editor'", - "program": "${workspaceRoot}/target/debug/editor", - "cargo": { - "args": [ - "build", - "--bin=editor", - "--package=opensi" - ], - "filter": { - "name": "editor", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in executable 'editor'", - "cargo": { - "args": [ - "test", - "--no-run", - "--bin=editor", - "--package=opensi" - ], - "filter": { - "name": "editor", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug executable 'client'", - "program": "${workspaceRoot}/target/debug/editor", - "cargo": { - "args": [ - "build", - "--bin=client", - "--package=opensi" - ], - "filter": { - "name": "client", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug unit tests in executable 'client'", - "cargo": { - "args": [ - "test", - "--no-run", - "--bin=client", - "--package=opensi" - ], - "filter": { - "name": "client", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug integration test 'test'", - "cargo": { - "args": [ - "test", - "--no-run", - "--test=test", - "--package=opensi" - ], - "filter": { - "name": "test", - "kind": "test" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - } - ] -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index a20ae8c..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "tasks": [ - { - "type": "cargo", - "subcommand": "build", - "problemMatcher": [ - "$rustc" - ], - "group": "build" - } - ] -} \ No newline at end of file