diff --git a/.gitignore b/.gitignore index 104e066..49f6f13 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,15 @@ /gh-browse-pr /gh-browse-pr.exe + +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5ddc5be --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${fileDirname}", + "cwd": "${workspaceRoot}/cmd", + "env": {}, + "args": [] + } + ] +}