We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b9d063 + 0148ff9 commit 1718d54Copy full SHA for 1718d54
.gitignore
@@ -1,2 +1,15 @@
1
/gh-browse-pr
2
/gh-browse-pr.exe
3
+
4
+.vscode/*
5
+!.vscode/settings.json
6
+!.vscode/tasks.json
7
+!.vscode/launch.json
8
+!.vscode/extensions.json
9
+!.vscode/*.code-snippets
10
11
+# Local History for Visual Studio Code
12
+.history/
13
14
+# Built Visual Studio Code Extensions
15
+*.vsix
.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": []
+ }
+ ]
+}
0 commit comments