Magic Numbers are a Production Risk
This code insight counts one violation each time a litteral numeric constant is encountered, that is not assigned to a constant.-
interger : (0|0[xX])?[0123456789ABCDEF]+([lL]?
-
decimal : ([0-9]*\.[0-9]+|[0-9]+\.)
- real : [0-9]+[eE][+-]?[0-9]+
- one digit integer
- 0.0, .0, 0.
- 1.0
PI = 3.14 # not a violation because assigned to a constant
CONST = 123 * 456 # 2 violations : the assignation is an expression (containing 2 Magics)
a = 12 # violation because assigned to a variable
if (b):
a = b
)
Why you should care
It is recommended to use constants as default values for arguments in a function or method. This is cleaner, easier to read and there's only one place to modify. Make sure, you document your constant, to explain where the value comes from. Highlight : Avoid litteral numeric constants.Business Impacts
[nz_btn text="Production Risk" target="_self" animate="false" animation_type="ghost" color="pink" size="small" shape="rounded" type="normal" hover_normal="opacity" hover_ghost="fill" link="http://casthighlight.wpengine.com/category/product/indicators-methodology/innovation/" icon="icon-office"]CAST recommendations
References
https://www.quantifiedcode.com/knowledge-base/maintainability/Use%20constants%20as%20default%20values%20for%20arguments/24kTDwfLAbout 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.
For reference only. For the complete details please refer the original article
https://doc.casthighlight.com/alt_magicnumbers-avoid-magic-numbers/
https://doc.casthighlight.com/alt_magicnumbers-avoid-magic-numbers/
Comments