ec0lint-plugin-ec0lint-plugin
Version:
An ec0lint plugin for linting ec0lint plugins
84 lines (74 loc) • 2.65 kB
JavaScript
/**
* @fileoverview Disallow the version of `context.report()` with multiple arguments
* @author Teddy Katz
*/
;
const utils = require('../utils');
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
/** @type {import('eslint').Rule.RuleModule} */
module.exports = {
meta: {
type: 'suggestion',
docs: {
description:
'disallow the version of `context.report()` with multiple arguments',
category: 'Rules',
recommended: true,
url: 'https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/tree/HEAD/docs/rules/no-deprecated-report-api.md',
},
fixable: 'code', // or "code" or "whitespace"
schema: [],
messages: {
useNewAPI: 'Use the new-style context.report() API.',
},
},
create(context) {
const sourceCode = context.getSourceCode();
let contextIdentifiers;
// ----------------------------------------------------------------------
// Public
// ----------------------------------------------------------------------
return {
Program(ast) {
contextIdentifiers = utils.getContextIdentifiers(
sourceCode.scopeManager,
ast
);
},
CallExpression(node) {
if (
node.callee.type === 'MemberExpression' &&
contextIdentifiers.has(node.callee.object) &&
node.callee.property.type === 'Identifier' &&
node.callee.property.name === 'report' &&
(node.arguments.length > 1 ||
(node.arguments.length === 1 &&
node.arguments[0].type === 'SpreadElement'))
) {
context.report({
node: node.callee.property,
messageId: 'useNewAPI',
fix(fixer) {
const openingParen = sourceCode.getTokenBefore(node.arguments[0]);
const closingParen = sourceCode.getLastToken(node);
const reportInfo = utils.getReportInfo(node.arguments, context);
if (!reportInfo) {
return null;
}
return fixer.replaceTextRange(
[openingParen.range[1], closingParen.range[0]],
`{${Object.keys(reportInfo)
.map(
(key) => `${key}: ${sourceCode.getText(reportInfo[key])}`
)
.join(', ')}}`
);
},
});
}
},
};
},
};