feat(config): add sub-category granularity to opinionated components #107

Merged
rootiest merged 30 commits from worktree-opinionated-subcategories into main 2026-08-19 01:42:26 +00:00
Showing only changes of commit 0554a3dddc - Show all commits
+1 -1
View File
@@ -159,7 +159,7 @@ def _load_taxonomy() -> dict[str, set[str]]:
taxonomy[category] = {
m.group(1)
for ln in body.split("\n")
if (m := re.match(r"^## (\S+)$", ln))
if (m := re.match(r"^## ([a-z][a-z0-9-]*)$", ln))
}
return taxonomy