CostSoftware AgilityEmbedded Documentation
Cost
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
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
CAST recommendations
References
https://www.quantifiedcode.com/knowledge-base/maintainability/Avoid%20%22non-Pythonic%22%20method%20names/2QdgB8ll
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