fix: address latest claude review findings

This commit is contained in:
2026-02-28 20:07:42 -08:00
parent fd77f8f6a2
commit 55c577e911
7 changed files with 137 additions and 10 deletions

View File

@@ -81,6 +81,7 @@ function isExcludedByTagSet(
if (parts.length === 0) {
return false;
}
// Composite tags like "助詞|名詞" stay eligible unless every component is excluded.
return parts.every((part) => exclusions.has(part));
}