Skip to content

Latest commit

 

History

History
66 lines (49 loc) · 4.3 KB

README.rst

File metadata and controls

66 lines (49 loc) · 4.3 KB
Root.Smell.Naming Parent Index
Sibling aspects ClassSmell Complexity MethodSmell

Naming

This aspect checks on identifiers in your codebase (their length and the appropriate naming convention to use for them, be it variables, classes or functions names.)

Tastes

* bold denotes default value

Subaspects

This aspect does not have any sub aspects.

Example

camelCase naming convention, snake_case naming convention,
hyphenated-case naming convention etc...

Importance

Consistent use of naming convention, make the code easy to read and debug.

How to fix this

Use the appropriate naming convention for each data type.