Bad class names can increase costs

CostSoftware AgilityEmbedded Documentation

Bad class names can increase costs

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

[A-Z_][a-zA-Z0-9]*$

  • underscore as prefix only
  • first letter words capitalized

5362

Why you should care

The name of the class 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 class to match the following regular expression: [A-Z_][a-zA-Z0-9]*$.

Business Impacts

Cost

CAST recommendations

References

https://www.quantifiedcode.com/knowledge-base/readability/Avoid%20%22non-Pythonic%22%20class%20names/1ynDCGAE

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