astro-ghostcms/.pnpm-store/v3/files/4e/7467e3f3d9f1413a29ce4ea283b...

73 lines
2.9 KiB
Plaintext
Raw Normal View History

2024-02-14 19:45:06 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("@typescript-eslint/utils");
const util_1 = require("../util");
const getMemberExpressionName = (member) => {
if (!member.computed) {
return member.property.name;
}
if (member.property.type === utils_1.AST_NODE_TYPES.Literal &&
typeof member.property.value === 'string') {
return member.property.value;
}
return null;
};
exports.default = (0, util_1.createRule)({
name: 'prefer-reduce-type-parameter',
meta: {
type: 'problem',
docs: {
description: 'Enforce using type parameter when calling `Array#reduce` instead of casting',
recommended: 'strict',
requiresTypeChecking: true,
},
messages: {
preferTypeParameter: 'Unnecessary cast: Array#reduce accepts a type parameter for the default value.',
},
fixable: 'code',
schema: [],
},
defaultOptions: [],
create(context) {
const services = (0, util_1.getParserServices)(context);
const checker = services.program.getTypeChecker();
return {
'CallExpression > MemberExpression.callee'(callee) {
if (getMemberExpressionName(callee) !== 'reduce') {
return;
}
const [, secondArg] = callee.parent.arguments;
if (callee.parent.arguments.length < 2 || !(0, util_1.isTypeAssertion)(secondArg)) {
return;
}
// Get the symbol of the `reduce` method.
const calleeObjType = (0, util_1.getConstrainedTypeAtLocation)(services, callee.object);
// Check the owner type of the `reduce` method.
if (checker.isArrayType(calleeObjType)) {
context.report({
messageId: 'preferTypeParameter',
node: secondArg,
fix: fixer => {
const fixes = [
fixer.removeRange([
secondArg.range[0],
secondArg.expression.range[0],
]),
fixer.removeRange([
secondArg.expression.range[1],
secondArg.range[1],
]),
];
if (!callee.parent.typeArguments) {
fixes.push(fixer.insertTextAfter(callee, `<${context.sourceCode.getText(secondArg.typeAnnotation)}>`));
}
return fixes;
},
});
return;
}
},
};
},
});
//# sourceMappingURL=prefer-reduce-type-parameter.js.map