Skip to content

Commit 8b00460

Browse files
author
Gonzalo Diaz
committed
[CONFIG] VScode suggested launch settings
1 parent 78e01bc commit 8b00460

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,6 @@ bin/
6868
# Static Analysis Results Interchange Format
6969
*.sarif
7070
.dccache
71+
72+
# Settings
73+
.vscode/launch.json

.vscode/launch.json.suggested

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
// Use IntelliSense para saber los atributos posibles.
3+
// Mantenga el puntero para ver las descripciones de los existentes atributos.
4+
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "DebugServer",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "debug",
12+
"program": "${workspaceFolder}",
13+
"dlvFlags": [
14+
"--check-go-version=false"
15+
]
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)