Merge pull request #688 from voideditor/test1

update voidrules
This commit is contained in:
Andrew Pareles 2025-05-30 20:40:12 -07:00 committed by GitHub
commit 3bc0a34e83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.