[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
+26
View File
@@ -0,0 +1,26 @@
{
"rules": {
"max-file-lines": 250,
"max-folder-items": 6
},
"include_extensions": [".py", ".ts", ".tsx", ".js", ".jsx"],
"exclude": [
"node_modules",
".venv",
"dist",
"build",
"__pycache__",
".git",
".cursor",
".vscode",
"uv-bin",
"data",
"public",
"readme_assets",
"ASSISTANT_UI_MIGRATION"
],
"exceptions": {
"max-file-lines": [],
"max-folder-items": []
}
}