Add stale cleanup function (still WIP)
This commit is contained in:
parent
309b3d3984
commit
4d8cfb9298
4 changed files with 79 additions and 1 deletions
27
.vscode/tasks.json
vendored
Normal file
27
.vscode/tasks.json
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"type": "shell",
|
||||
"command": "go",
|
||||
"options": {
|
||||
"cwd": "${workspaceFolder}",
|
||||
},
|
||||
"presentation": {
|
||||
"reveal": "never",
|
||||
"revealProblems": "onProblem",
|
||||
},
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build Project",
|
||||
"args": [
|
||||
"build",
|
||||
"-o",
|
||||
"build/",
|
||||
"./cmd/joyful",
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true,
|
||||
},
|
||||
},
|
||||
],
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue