Skip to main content

max / makenotwork

tagtree: sync lint allow-list with the ecosystem block Add match_same_arms / unnecessary_wraps / type_complexity to the allow block so it matches the finalized shared baseline (these were folded in after tagtree's initial adoption). No code change; still clippy-clean. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-07-23 13:23 UTC
Commit: 662f51470e73884dc0fd81cb44c66bc72f9707e1
Parent: 6cc283a
1 file changed, +4 insertions, -0 deletions
@@ -44,3 +44,7 @@ struct_excessive_bools = "allow"
44 44 similar_names = "allow"
45 45 items_after_statements = "allow"
46 46 single_match_else = "allow"
47 + # Frequent false-positives in TUI/router-heavy code across the ecosystem.
48 + match_same_arms = "allow"
49 + unnecessary_wraps = "allow"
50 + type_complexity = "allow"