From 4e6625ee2d0ccd036626287e3a929f10fc109e40 Mon Sep 17 00:00:00 2001 From: f0x52 Date: Wed, 8 Jun 2022 20:26:44 +0200 Subject: [feature] add vscode workspace config for linting + debugging (#588) * vscode workspace config for debug run + linting * ignore debug build file --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..906262d2f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch Package", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${workspaceFolder}/cmd/gotosocial", + "args": [ + "testrig", "start" + ], + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file -- cgit v1.3