Bad attribute names can increase costs

CostSoftware AgilityEmbedded Documentation

Bad attribute names can increase costs

This code insight counts one violation each time the name do not complies with:

[a-z_][a-z0-9_]*$

  • underscore allowed
  • lowercase

5362

Why you should care

The name of the class attribute does match the naming convention. This error is a stylistic warning. The code will execute. But you can improve the readability of the code by renaming the attribute to match the following regular expressions:

[a-z_][a-z0-9_]*$

Business Impacts

Cost

CAST recommendations

References

https://www.quantifiedcode.com/knowledge-base/readability/Avoid%20%22non-Pythonic%22%20attribute%20names/3ueqPTsn

5362

About CAST and Highlight’s Code Insights

Over the last 25 years, CAST has leveraged unique knowledge on software quality measurement by analyzing thousands of applications and billions of lines of code. Based on this experience and community standards on programming best practices, Highlight implements hundreds of code insights across 15+ technologies to calculate health factors of a software.

See featuresHow it works