From 9c642763f006c5a37561559c2820e6e89d506d75 Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Fri, 30 May 2025 20:39:57 -0700 Subject: [PATCH] update voidrules --- .voidrules | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.voidrules b/.voidrules index 59586971..6c655134 100644 --- a/.voidrules +++ b/.voidrules @@ -10,3 +10,5 @@ In typescript, do NOT cast to types if not neccessary. NEVER lazily cast to 'any Do not add or remove semicolons to any of my files. Just go with convention and make the least number of changes. Never modify files outside src/vs/workbench/contrib/void without consulting with the user first. + +All types that map from a value A to B should be called bOfA. For example, if you create a hashmap that goes from toolId to toolName, it should be called toolNameOfToolId, etc.