From 549eb7f1539bbce4b054c4e7d545f034eb5e5853 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Thu, 12 Jan 2023 23:51:05 -0600 Subject: [PATCH] chore: Add vscode launch.json --- .gitignore | 4 ++-- .vscode/launch.json | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 46487bc4..13131b1c 100644 --- a/.gitignore +++ b/.gitignore @@ -87,8 +87,8 @@ cython_debug/ # Visual Studio Code .vscode/* !.vscode/settings.json -#!.vscode/tasks.json -#!.vscode/launch.json +!.vscode/tasks.json +!.vscode/launch.json !.vscode/extensions.json !.vscode/*.code-snippets diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..6d3ca8ce --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,17 @@ +{ + // 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": [ + { + "name": "DupuGuru", + "type": "python", + "request": "launch", + "program": "run.py", + "console": "integratedTerminal", + "subProcess": true, + "justMyCode": false + }, + ] +} \ No newline at end of file