noRecursiveRecursion is not allowed (JPL Power of 10). Use iteration instead — a loop or explicit stack.small-rules/no-recursive<MISSING-DESCRIPTION>
noRecursiveRecursion is not allowed (JPL Power of 10). Use iteration instead — a loop or explicit stack.This rule accepts one options object after the severity.
function factorial(n) { if (n <= 1) return 1; return n * factorial(n - 1); }function foo() { return 1; }