forked from ivov/eslint-plugin-n8n-nodes-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node-param-placeholder-missing-email.ts
50 lines (43 loc) · 1.17 KB
/
node-param-placeholder-missing-email.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
import { EMAIL_PLACEHOLDER } 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: "`placeholder` for Email node parameter must exist.",
recommended: "error",
},
fixable: "code",
schema: [],
messages: {
missingEmail: `Add "placeholder: '${EMAIL_PLACEHOLDER}'" [autofixable]`,
},
},
defaultOptions: [],
create(context) {
return {
ObjectExpression(node) {
if (!id.isNodeParameter(node) && !id.isOption(node)) return;
if (!id.nodeParam.isEmail(node)) return;
const placeholder = getters.nodeParam.getPlaceholder(node);
if (!placeholder) {
const type = getters.nodeParam.getType(node); // insertion point
if (!type) return;
const { range, indentation } = utils.getInsertionArgs(type);
context.report({
messageId: "missingEmail",
node,
fix: (fixer) =>
fixer.insertTextAfterRange(
range,
`\n${indentation}placeholder: '${EMAIL_PLACEHOLDER}',`
),
});
}
},
};
},
});