Add workflow to check lines of code excluding tests

This commit is contained in:
Peter Stockings
2026-01-07 16:52:07 +11:00
parent b503199ba9
commit 4ca932e11c

7
.agent/workflows/loc.md Normal file
View File

@@ -0,0 +1,7 @@
---
description: Count lines of TypeScript source code excluding tests
---
// turbo-all
1. Count TypeScript lines excluding tests: `(Get-ChildItem -Recurse -Include *.ts -Exclude *.test.ts,*.spec.ts -Path . | Where-Object { $_.FullName -notmatch '\\node_modules\\' } | Get-Content |
Measure-Object -Line).Lines`