From d9b862a68b204c82565a9beb40587e32c2648937 Mon Sep 17 00:00:00 2001 From: Ian Chou <33033541+ianTPE@users.noreply.github.com> Date: Tue, 11 Aug 2026 00:59:11 +0800 Subject: [PATCH] adrs: suggest warning on duplicate project names at creation --- adrs/duplicate-project-names.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 adrs/duplicate-project-names.md diff --git a/adrs/duplicate-project-names.md b/adrs/duplicate-project-names.md new file mode 100644 index 00000000..98621c2e --- /dev/null +++ b/adrs/duplicate-project-names.md @@ -0,0 +1,13 @@ +I ran into this while writing up naming conventions for projects. + +I understand why project names aren't strictly checked for uniqueness — the project +list is per-member, so "unique" doesn't really apply. + +But it does get awkward. If I forget I already made a project with a name, or someone +adds me to a project that happens to have the same name as one of mine, I end up with +two identically named cards in my list. + +Duplicate names might be deliberate sometimes, but they're definitely harder to manage. + +Would it be better if creating a project checked the list you can already see for a +matching name, and warned you if there was one? A warning, not a rejection.