Bad method names can increase costs

CostSoftware AgilityEmbedded Documentation

Bad method 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 method 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 method to match the following regular expression: [a-z_][a-z0-9_]{2,}$.

Business Impacts

Cost

CAST recommendations

References

https://www.quantifiedcode.com/knowledge-base/maintainability/Avoid%20%22non-Pythonic%22%20method%20names/2QdgB8ll

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