-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnode-param-description-missing-for-return-all.ts
51 lines (44 loc) · 1.23 KB
/
node-param-description-missing-for-return-all.ts
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
import { RETURN_ALL_NODE_PARAMETER } from "../constants";
import { utils } from "../ast/utils";
import { id } from "../ast/identifiers";
import { getters } from "../ast/getters";
export default utils.createRule({
name: utils.getRuleName(module),
meta: {
type: "problem",
docs: {
description:
"`description` for Return All node parameter must be present.",
recommended: "strict",
},
fixable: "code",
schema: [],
messages: {
addReturnAllDescription: `Add description: '${RETURN_ALL_NODE_PARAMETER.DESCRIPTION}' [autofixable]`,
},
},
defaultOptions: [],
create(context) {
return {
ObjectExpression(node) {
if (!id.isNodeParameter(node)) return;
if (!id.nodeParam.isReturnAll(node)) return;
const description = getters.nodeParam.getDescription(node);
if (!description) {
const type = getters.nodeParam.getType(node); // insertion point
if (!type) return;
const { range, indentation } = utils.getInsertionArgs(type);
context.report({
messageId: "addReturnAllDescription",
node,
fix: (fixer) =>
fixer.insertTextAfterRange(
range,
`\n${indentation}description: '${RETURN_ALL_NODE_PARAMETER.DESCRIPTION}',`
),
});
}
},
};
},
});