Require unassigned functions to be named inline
Types: Boolean
or Object
Values:
true
Object
:allExcept
: array of quoted identifiers"requireNamedUnassignedFunctions": { "allExcept": ["describe", "it"] }
[].forEach(function x() {});
var y = function() {};
function z() {}
it(function () {});
[].forEach(function () {});
before(function () {});