When allExcept: ['moduleExports'] set, ignore no matching names of function declearation assignment to module.exports.
Valid:
module.exports = function foo() {}
module['exports'] = function bar() {}
k.module.exports = function exports() {}Invalid:
k.module.exports = function baz() {}