Skip to content

Commit

Permalink
fix workspace file
Browse files Browse the repository at this point in the history
  • Loading branch information
nmisek committed Mar 18, 2024
1 parent f7c62de commit 8db0d76
Showing 1 changed file with 23 additions and 19 deletions.
42 changes: 23 additions & 19 deletions nextroute.code-workspace
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
{
"folders": [{
"path": ".",
"name": "nextroute"
}, ],
"folders": [
{
"path": ".",
"name": "nextroute"
},
],
"settings": {
"go.lintTool": "golangci-lint",
"go.lintFlags": ["--fast"]
},
"launch": {
"version": "0.2.0",
"configurations": [{
"name": "nextroute",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/tests/custom_operators",
"args": [
"-runner.input.path",
"input.json",
"-solve.duration",
"5s",
"-runner.output.path",
"output.json"
]
}],
"configurations": [
{
"name": "nextroute",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd",
"args": [
"-runner.input.path",
"input.json",
"-solve.duration",
"5s",
"-runner.output.path",
"output.json"
]
}
],
"compounds": []
}
}

0 comments on commit 8db0d76

Please sign in to comment.