This repository was archived by the owner on Jun 6, 2019. It is now read-only.
forked from eslint-community/eslint-plugin-eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequire-meta-fixable.js
81 lines (71 loc) · 2.94 KB
/
require-meta-fixable.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/**
* @fileoverview require rules to implement a meta.fixable property
* @author Teddy Katz
*/
'use strict';
const utils = require('../utils');
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: 'require rules to implement a meta.fixable property',
category: 'Rules',
recommended: true,
url: 'https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/tree/master/docs/rules/require-meta-fixable.md',
},
schema: [],
},
create (context) {
const sourceCode = context.getSourceCode();
const ruleInfo = utils.getRuleInfo(sourceCode.ast);
let contextIdentifiers;
let usesFixFunctions;
// ----------------------------------------------------------------------
// Helpers
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// 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 > 4 || (
node.arguments.length === 1 &&
node.arguments[0].type === 'ObjectExpression' &&
node.arguments[0].properties.some(prop => utils.getKeyName(prop) === 'fix')
))
) {
usesFixFunctions = true;
}
},
'Program:exit' () {
const metaFixableProp = ruleInfo &&
ruleInfo.meta &&
ruleInfo.meta.type === 'ObjectExpression' &&
ruleInfo.meta.properties.find(prop => utils.getKeyName(prop) === 'fixable');
if (metaFixableProp) {
const VALID_VALUES = new Set(['code', 'whitespace', null, undefined]);
const valueIsValid = metaFixableProp.value.type === 'Literal'
? VALID_VALUES.has(metaFixableProp.value.value)
: metaFixableProp.value.type === 'TemplateLiteral' && metaFixableProp.value.quasis.length === 1
? VALID_VALUES.has(metaFixableProp.value.quasis[0].value.cooked)
: metaFixableProp.value.type === 'Identifier' && metaFixableProp.value.name === 'undefined';
if (!valueIsValid) {
context.report({ node: metaFixableProp, message: '`meta.fixable` must be either `code`, `whitespace` or `null`.' });
}
} else if (usesFixFunctions) {
context.report({ node: ruleInfo.create, message: 'Fixable rules must export a `meta.fixable` property.' });
}
},
};
},
};