Name length cc4m_logo_inline

IDNAMING-1
TitleVariable names shall be at most 32 characters long. Function names shall be at least 3 and at most 32 characters long.
PriorityRecommended
Severity level8
DescriptionVariable names shall be at most 32 characters long. Function names shall be at least 3 and at most 32 characters long.
RationaleNames shall be descriptive, so should not be too short. However, variable names can sometimes be single characters (x, y) and still be descriptive. Names that are too long can reduce readability because they introduce long lines of code.

Avoid:

maximumValueOfTheEntireSetOfDataPoints = max(data);

Instead use:

maxData = max(data);