We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b55e1ca commit b6d74f4Copy full SHA for b6d74f4
.github/scripts/build_findings.js
@@ -127,7 +127,7 @@ function diagHasLivePath(diag) {
127
if (REPORT_ONLY_LIVE && !live) continue;
128
129
// scoring + reasons
130
- let score = 0; const reasons = [];
+ let score = 0; let reasons = [];
131
if (img != null && img >= phashThr) { score+=2; reasons.push(`img>=${phashThr} (${img}%)`); }
132
if (html != null && html >= lshThr) { score+=1; reasons.push(`html>=${lshThr} (${html}%)`); }
133
if (nameClose(dom)) { score+=2; reasons.push(`name-edit≤${NAME_EDIT_MAX}`); }
0 commit comments