Add stale cleanup function (still WIP)

This commit is contained in:
Anna Rose Wiggins 2025-06-27 13:57:35 -04:00
parent 309b3d3984
commit 4d8cfb9298
4 changed files with 79 additions and 1 deletions

27
.vscode/tasks.json vendored Normal file
View 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,
},
},
],
}