外观
检查是否使用了过时的数学运算模式。
现代 JavaScript 为过时的模式提供了更简洁易读的替代模式。
目前,检查以下情况
Math.log10(x)
Math.hypot(…)
此规则的错误代码示例
Math.log(x) * Math.LOG10E; Math.sqrt(a * a + b * b);
此规则的正确代码示例
Math.log10(x); Math.hypot(a, b);