forked from wasabee-project/Wasabee-IITC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint-local-rules.js
45 lines (43 loc) · 1.13 KB
/
eslint-local-rules.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
"use strict";
const sourceLanguage = require("./src/code/translations/English.json");
module.exports = {
"wx-keys": {
meta: {
docs: {
description: "Check wX calls",
category: "Possible Errors",
recommended: false,
},
schema: [],
},
create: function (context) {
return {
CallExpression: function (node) {
const callee = node.callee;
if (callee.type !== "Identifier") return;
if (callee.name !== "wX") return;
const args = node.arguments;
if (args.length < 1 || args.length > 2) {
context.report({
node: node,
message: "Invalid number of arguments for wX",
});
} else {
if (args[0].type !== "Literal") return;
const key = args[0].value;
if (key in sourceLanguage) {
return;
}
context.report({
node: node,
message: "Unknown wX key: {{ key }}",
data: {
key: args[0].raw
},
});
}
},
};
},
},
};