-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
I would like to change the following concerning variable naming:
- Eliminate snake case variable names and replace with camel case.
- Make all global variables (
Self._property:* = ...
) upper case, all local variables lower case. - Remove the
Self._property:
prefix when reading global variables. Upper case will already make clear that this is a global variable. - Eliminate re-assignments of global variables to local ones (like
score = ActiveScore;
), unless they are accessed a lot locally and it's clear that re-assignment has benefits (readability or performance). - Document these conventions.
Anything else?
Metadata
Metadata
Assignees
Labels
No labels