diff --git a/.agent/workflows/loc.md b/.agent/workflows/loc.md new file mode 100644 index 0000000..90b9aa6 --- /dev/null +++ b/.agent/workflows/loc.md @@ -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` \ No newline at end of file