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
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,12 @@ grade: legacy debt never blocks a PR, only the changes do ("clean as
93
93
you code"). The delta ("B 87.9 → C 77.2") renders in console, markdown
94
94
(great for PR comments), and JSON.
95
95
96
+
On very large codebases, `--no-dup-scan` skips line-duplication
97
+
collection to save memory; the health score then omits the duplication
98
+
dimension (it is not scored as clean — the remaining weights are
99
+
renormalized), and machine-readable output reports the scoring model as
100
+
`default-no-dup` instead of `default`.
101
+
96
102
### Hotspot Detection
97
103
98
104
Find the riskiest files by combining git change frequency (churn) with code complexity — files that change often AND are complex are the most likely sources of bugs.
@@ -275,6 +281,12 @@ depth = 10
275
281
276
282
# Show git info
277
283
git_info = true
284
+
285
+
# Skip line-duplication analysis (health score omits the duplication dimension)
286
+
no_dup_scan = true
287
+
288
+
# Custom language definitions (relative paths resolve against this file's directory)
0 commit comments