eslint-plugin-unicorn
Version:
Various awesome ESLint rules
72 lines (59 loc) • 1.48 kB
JavaScript
module.exports = options => {
const {
name,
names,
length,
object,
min,
max,
property = '',
includeOptional = false
} = {
min: 0,
max: Number.POSITIVE_INFINITY,
...options
};
const prefix = property ? `${property}.` : '';
const selector = [
`[${prefix}type="CallExpression"]`,
`[${prefix}callee.type="MemberExpression"]`,
`[${prefix}callee.property.type="Identifier"]`
];
if (!includeOptional) {
selector.push(`[${prefix}callee.computed=false]`);
}
if (name) {
selector.push(`[${prefix}callee.property.name="${name}"]`);
}
if (Array.isArray(names) && names.length > 0) {
selector.push(
':matches(' +
names.map(name => `[${prefix}callee.property.name="${name}"]`).join(', ') +
')'
);
}
if (object) {
selector.push(
`[${prefix}callee.object.type="Identifier"]`,
`[${prefix}callee.object.name="${object}"]`
);
}
if (typeof length === 'number') {
selector.push(`[${prefix}arguments.length=${length}]`);
}
if (min !== 0) {
selector.push(`[${prefix}arguments.length>=${min}]`);
}
if (Number.isFinite(max)) {
selector.push(`[${prefix}arguments.length<=${max}]`);
}
const maxArguments = Number.isFinite(max) ? max : length;
if (typeof maxArguments === 'number') {
// Exclude arguments with `SpreadElement` type
for (let index = 0; index < maxArguments; index += 1) {
selector.push(`[${prefix}arguments.${index}.type!="SpreadElement"]`);
}
}
return selector.join('');
};
;