From 6cafb4419592f570985c500cbf5a166984edc588 Mon Sep 17 00:00:00 2001 From: Mohamad Choupan Date: Sat, 21 Dec 2024 00:20:48 +0330 Subject: [PATCH] update .vscode --- .gitignore | 4 +++- .vscode/launch.json | 16 ++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index d4ec175e..6bca3eaa 100755 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ og-describer-template .idea .env local/ -output.json \ No newline at end of file +output.json +.vscode +.vscode/* \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..f45b2c5b --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // 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": "Launch Package", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "command/main.go", + "args": ["describer", "--resourceType" ,"Github/Commit"] + } + ] +} \ No newline at end of file