[Haik]: ckpt, nine router now runs on different ports for dev vs prod. Also made a custom linter to enforce my standards

This commit is contained in:
haikdc
2026-03-30 08:53:52 -07:00
parent 7f3df20970
commit 6deebbd052
10 changed files with 418 additions and 9 deletions
+55
View File
@@ -0,0 +1,55 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "structlint:watch",
"type": "shell",
"command": "python3",
"args": ["${workspaceFolder}/linter/structlint.py", "--watch", "--root", "${workspaceFolder}"],
"isBackground": true,
"runOptions": {
"runOn": "folderOpen"
},
"presentation": {
"reveal": "never",
"panel": "dedicated",
"close": true
},
"problemMatcher": {
"owner": "structlint",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.+):(\\d+):(\\d+):\\s+(error|warning):\\s+(.+)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
},
"background": {
"activeOnStart": true,
"beginsPattern": "^structlint: checking\\.\\.\\.$",
"endsPattern": "^structlint: done\\."
}
}
},
{
"label": "structlint:check",
"type": "shell",
"command": "python3",
"args": ["${workspaceFolder}/linter/structlint.py", "--root", "${workspaceFolder}"],
"problemMatcher": {
"owner": "structlint",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern": {
"regexp": "^(.+):(\\d+):(\\d+):\\s+(error|warning):\\s+(.+)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
}
]
}