forked from eslint-community/eslint-plugin-eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno-deprecated-report-api.js
66 lines (57 loc) · 1.98 KB
/
no-deprecated-report-api.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
* @fileoverview disallow use of the deprecated context.report() API
* @author Teddy Katz
*/
'use strict';
const utils = require('../utils');
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: 'disallow use of the deprecated context.report() API',
category: 'Rules',
recommended: true,
},
fixable: 'code', // or "code" or "whitespace"
schema: [],
},
create (context) {
const sourceCode = context.getSourceCode();
let contextIdentifiers;
// ----------------------------------------------------------------------
// Public
// ----------------------------------------------------------------------
return {
Program (node) {
contextIdentifiers = utils.getContextIdentifiers(context, node);
},
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
) {
context.report({
node: node.callee.property,
message: 'Use the new-style context.report() API.',
fix (fixer) {
const openingParen = sourceCode.getTokenBefore(node.arguments[0]);
const closingParen = sourceCode.getLastToken(node);
const reportInfo = utils.getReportInfo(node.arguments);
if (!reportInfo) {
return null;
}
return fixer.replaceTextRange(
[openingParen.range[1], closingParen.range[0]],
`{${Object.keys(reportInfo).map(key => `${key}: ${sourceCode.getText(reportInfo[key])}`).join(', ')}}`
);
},
});
}
},
};
},
};