Skip to content

Commit

Permalink
Merge pull request #12 from kyoshidajp/add_launch_settings_in_vscode
Browse files Browse the repository at this point in the history
Add vscode settings
  • Loading branch information
kyoshidajp authored Oct 8, 2023
2 parents 3b9d063 + 0148ff9 commit 1718d54
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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 comments on commit 1718d54

Please sign in to comment.