From 4a60540b4c5ee97f715a51d37dbd1226b6abc969 Mon Sep 17 00:00:00 2001 From: Quinn Date: Tue, 18 Mar 2025 16:13:34 +0100 Subject: [PATCH] remove .vscode directory stopped using vscode, so this directory would cause extra upkeep --- .gitignore | 1 - .vscode/launch.json | 26 -------------------------- .vscode/tasks.json | 15 --------------- 3 files changed, 42 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json diff --git a/.gitignore b/.gitignore index 002a62a..1680373 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,3 @@ # unignore dotfiles that we'd like to keep !/.github/ -!/.vscode/ diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index da30dab..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": "2.0.0", - "configurations": [ - { - "name": "(lldb) debug project", - "type": "lldb", - "request": "launch", - "env": { - "DEBUG": "1", - "ASAN_OPTIONS": "detect_leaks=0", - "UBSAN_OPTIONS": "print_stacktrace=1:halt_on_error=1" - }, - "program": "", - "linux": { - "preLaunchTask": "(dbg) compile linux-x86_64", - "program": "${workspaceFolder}/bin/linux-x86_64/dbg/${workspaceFolderBasename}", - "cwd": "${workspaceFolder}/bin/linux-x86_64/dbg/" - }, - "windows": { - "preLaunchTask": "(dbg) compile win-x86_64", - "program": "${workspaceFolder}/bin/linux-x86_64/dbg/${workspaceFolderBasename}.exe", - "cwd": "${workspaceFolder}/bin/win-x86_64/dbg/" - } - } - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 5567efe..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "(dbg) compile linux-x86_64", - "type": "shell", - "command": "DEBUG=1 make linux-x86_64" - }, - { - "label": "(dbg) compile win-x86_64", - "type": "shell", - "command": "DEBUG=1 make win-x86_64" - } - ] -}