Requires to return early in a function.
Types: Boolean
Values:
true
: disallow to use of else if the corresponding if
block contain a return."requireEarlyReturn": true
function test() {
if (x) {
return x;
}
return y;
}
function test() {
if (x) {
return x;
} else {
return y;
}
}