You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stop excluding 'layout/', 'rebuild/' etc. from line counts
The exclusion list matched raw substrings, which made several entries
silently drop legit code:
"out/" matched layout/, checkout/, payouts/, routes/, ...
"build/" matched rebuild/, webuild/, prebuild/, ...
"target/" matched subtarget/, targets/, ...
"env/" matched environment/, envoy/, tensor_env/, ...
"dist/" matched redistribute/, coexist/, ...
Switch to path-component (segment-anchored) matching: split the path
on '/' and exclude only when a whole segment equals 'build', 'out',
'target', etc. Keeps every intended dependency / build-output dir
excluded while no longer over-matching legit source directories.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 commit comments