forked from quisquous/cactbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcactbot-locale-order.js
81 lines (72 loc) · 2.05 KB
/
cactbot-locale-order.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
const { generateValidList, generateValidObject } = require('./eslint-utils');
const defaultOrderList = [
'en',
'de',
'fr',
'ja',
'cn',
'ko',
];
let orderList = [];
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
/**
* @type Rule.RuleModule
*/
const ruleModule = {
meta: {
type: 'suggestion',
docs: {
description: 'suggest the locale object key order',
category: 'Stylistic Issues',
recommended: true,
url: 'https://github.com/quisquous/cactbot/blob/main/docs/RaidbossGuide.md#trigger-elements',
},
fixable: 'code',
schema: [
{
'type': 'array',
'items': {
'type': 'string',
},
},
],
messages: {
sortKeys:
'Expected locale object keys ordered like {{expectedOrder}} (\'{{beforeKey}}\' should be before \'{{nextKey}}\')',
},
},
create: function(context) {
// fill orderList with option,
// otherwise use the default one.
orderList = context.options[0] || defaultOrderList;
return {
ObjectExpression(node) {
const properties = node.properties;
const validList = generateValidList(orderList, properties);
if (validList.length >= 1) {
const sourceCode = context.getSourceCode();
validList.forEach((valid) => {
context.report({
node,
loc: node.loc,
messageId: 'sortKeys',
data: {
expectedOrder: `[${orderList.join(',')}]`,
beforeKey: valid.beforeKey,
nextKey: valid.nextKey,
},
fix: (fixer) => {
const replacementText = generateValidObject(orderList, properties, sourceCode);
if (replacementText)
return fixer.replaceTextRange(node.range, replacementText);
},
});
});
}
},
};
},
};
module.exports = ruleModule;