Skip to content

Commit f5d4e57

Browse files
committed
chore: replace whitelist/blacklist with allowlist/denylist
Per the new "Inclusive Language" rule in CLAUDE.md. Allowlist/denylist aren't euphemisms — they're more accurate descriptions of what the lists actually do. Files changed: code comments and JSDoc only. No behavior change.
1 parent 893d1b7 commit f5d4e57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/claude.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2672,7 +2672,7 @@ async function autonomousFixSession(
26722672

26732673
// Determine which issues to auto-fix
26742674
const toAutoFix = [...critical, ...high].filter(issue => {
2675-
// Auto-fix if type is in whitelist OR severity is critical
2675+
// Auto-fix if type is in allowlist OR severity is critical
26762676
return issue.severity === 'critical' || autoFixableTypes.has(issue.type)
26772677
})
26782678

0 commit comments

Comments
 (0)