Commit 1232f6b
fix(report): Fix conflicting auto-fix counts (63 vs 136)
BUG #4 FIX: Use autoFixableCount instead of totalFixable in footer
ISSUE:
- Report showed "Auto-fixable: 63/136 issues" but footer showed "Total: 136"
- Line 4000 used wrong variable (totalFixable instead of autoFixableCount)
ROOT CAUSE:
- totalFixable = ALL issues from IDE fix files
- autoFixableCount = ONLY auto-fixable issues (calculated at line 3988)
FIX:
- Line 4002: Changed totalFixable → autoFixableCount in footer
- Now both counts match correctly
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 9956bce commit 1232f6b
1 file changed
Lines changed: 4 additions & 2 deletions
Lines changed: 4 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3996 | 3996 | | |
3997 | 3997 | | |
3998 | 3998 | | |
3999 | | - | |
4000 | | - | |
| 3999 | + | |
| 4000 | + | |
| 4001 | + | |
| 4002 | + | |
4001 | 4003 | | |
4002 | 4004 | | |
4003 | 4005 | | |
| |||
0 commit comments