@agilebot/eslint-plugin 0.1.5 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +9 -9
- package/README.md +11 -11
- package/lib/index.js +58 -59
- package/lib/rules/import/enforce-icon-alias.js +42 -43
- package/lib/rules/import/monorepo.js +49 -49
- package/lib/rules/intl/id-missing.js +111 -105
- package/lib/rules/intl/id-prefix.js +103 -97
- package/lib/rules/intl/id-unused.js +123 -117
- package/lib/rules/intl/no-default.js +63 -57
- package/lib/rules/others/no-unnecessary-template-literals.js +38 -38
- package/lib/rules/react/better-exhaustive-deps.js +1923 -1921
- package/lib/rules/react/hook-use-ref.js +35 -37
- package/lib/rules/react/no-inline-styles.js +87 -87
- package/lib/rules/react/prefer-named-property-access.js +105 -105
- package/lib/rules/tss/class-naming.js +43 -43
- package/lib/rules/tss/no-color-value.js +58 -58
- package/lib/rules/tss/unused-classes.js +108 -108
- package/lib/util/intl.js +127 -127
- package/lib/util/settings.js +14 -14
- package/lib/util/translations.js +66 -66
- package/lib/util/tss.js +109 -109
- package/package.json +5 -3
package/LICENSE
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2024 Agilebot, Inc.
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
6
|
-
|
7
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
8
|
-
|
9
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2024 Agilebot, Inc.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
6
|
+
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
8
|
+
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
# @agilebot/eslint-plugin
|
2
|
-
|
3
|
-
### Usage
|
4
|
-
|
5
|
-
```bash
|
6
|
-
npm install --save-dev eslint @agilebot/eslint-plugin
|
7
|
-
```
|
8
|
-
|
9
|
-
### Documentation
|
10
|
-
|
11
|
-
See `docs` folder.
|
1
|
+
# @agilebot/eslint-plugin
|
2
|
+
|
3
|
+
### Usage
|
4
|
+
|
5
|
+
```bash
|
6
|
+
npm install --save-dev eslint @agilebot/eslint-plugin
|
7
|
+
```
|
8
|
+
|
9
|
+
### Documentation
|
10
|
+
|
11
|
+
See `docs` folder.
|
package/lib/index.js
CHANGED
@@ -1,59 +1,58 @@
|
|
1
|
-
// @ts-check
|
2
|
-
const path = require('node:path');
|
3
|
-
const { globSync } = require('fast-glob');
|
4
|
-
|
5
|
-
// List all rules in rules folder
|
6
|
-
const rulesPath = path.join(__dirname, 'rules');
|
7
|
-
const ruleFiles = globSync('**/*.js', {
|
8
|
-
cwd: rulesPath
|
9
|
-
});
|
10
|
-
|
11
|
-
/**
|
12
|
-
* @type {import('eslint').Linter.RulesRecord}
|
13
|
-
*/
|
14
|
-
const rules = {};
|
15
|
-
ruleFiles.forEach(file => {
|
16
|
-
const { dir, name } = path.parse(file);
|
17
|
-
const ruleName = `${dir}/${name}`;
|
18
|
-
rules[ruleName] = require(path.join(rulesPath, file));
|
19
|
-
});
|
20
|
-
|
21
|
-
module.exports.rules = rules;
|
22
|
-
|
23
|
-
module.exports.configs = {
|
24
|
-
recommended: {
|
25
|
-
plugins: ['@agilebot'],
|
26
|
-
rules: {
|
27
|
-
'react-hooks/exhaustive-deps': 'off',
|
28
|
-
'@agilebot/react/better-exhaustive-deps': [
|
29
|
-
'warn',
|
30
|
-
{
|
31
|
-
checkMemoizedVariableIsStatic: true,
|
32
|
-
staticHooks: {
|
33
|
-
'useIpc.*': {
|
34
|
-
value: true,
|
35
|
-
regexp: true
|
36
|
-
},
|
37
|
-
useDialog: true,
|
38
|
-
useSnackbar: true,
|
39
|
-
useForm: true,
|
40
|
-
'use.*Store': {
|
41
|
-
value: true,
|
42
|
-
regexp: true
|
43
|
-
}
|
44
|
-
}
|
45
|
-
}
|
46
|
-
],
|
47
|
-
'@agilebot/react/prefer-named-property-access': 'error',
|
48
|
-
'@agilebot/react/hook-use-ref': 'warn',
|
49
|
-
'@agilebot/react/no-inline-styles': 'error',
|
50
|
-
'@agilebot/tss/unused-classes': 'warn',
|
51
|
-
'@agilebot/tss/no-color-value': 'error',
|
52
|
-
'@agilebot/tss/class-naming': 'error',
|
53
|
-
'@agilebot/import/enforce-icon-alias': 'error',
|
54
|
-
'@agilebot/import/monorepo': 'error',
|
55
|
-
'@agilebot/others/no-unnecessary-template-literals': 'error'
|
56
|
-
}
|
57
|
-
|
58
|
-
|
59
|
-
};
|
1
|
+
// @ts-check
|
2
|
+
const path = require('node:path');
|
3
|
+
const { globSync } = require('fast-glob');
|
4
|
+
|
5
|
+
// List all rules in rules folder
|
6
|
+
const rulesPath = path.join(__dirname, 'rules');
|
7
|
+
const ruleFiles = globSync('**/*.js', {
|
8
|
+
cwd: rulesPath
|
9
|
+
});
|
10
|
+
|
11
|
+
/**
|
12
|
+
* @type {import('eslint').Linter.RulesRecord}
|
13
|
+
*/
|
14
|
+
const rules = {};
|
15
|
+
ruleFiles.forEach(file => {
|
16
|
+
const { dir, name } = path.parse(file);
|
17
|
+
const ruleName = `${dir}/${name}`;
|
18
|
+
rules[ruleName] = require(path.join(rulesPath, file));
|
19
|
+
});
|
20
|
+
|
21
|
+
module.exports.rules = rules;
|
22
|
+
|
23
|
+
module.exports.configs = {
|
24
|
+
recommended: {
|
25
|
+
plugins: ['@agilebot'],
|
26
|
+
rules: {
|
27
|
+
'react-hooks/exhaustive-deps': 'off',
|
28
|
+
'@agilebot/react/better-exhaustive-deps': [
|
29
|
+
'warn',
|
30
|
+
{
|
31
|
+
checkMemoizedVariableIsStatic: true,
|
32
|
+
staticHooks: {
|
33
|
+
'useIpc.*': {
|
34
|
+
value: true,
|
35
|
+
regexp: true
|
36
|
+
},
|
37
|
+
useDialog: true,
|
38
|
+
useSnackbar: true,
|
39
|
+
useForm: true,
|
40
|
+
'use.*Store': {
|
41
|
+
value: true,
|
42
|
+
regexp: true
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
],
|
47
|
+
'@agilebot/react/prefer-named-property-access': 'error',
|
48
|
+
'@agilebot/react/hook-use-ref': 'warn',
|
49
|
+
'@agilebot/react/no-inline-styles': 'error',
|
50
|
+
'@agilebot/tss/unused-classes': 'warn',
|
51
|
+
'@agilebot/tss/no-color-value': 'error',
|
52
|
+
'@agilebot/tss/class-naming': 'error',
|
53
|
+
'@agilebot/import/enforce-icon-alias': 'error',
|
54
|
+
'@agilebot/import/monorepo': 'error',
|
55
|
+
'@agilebot/others/no-unnecessary-template-literals': 'error'
|
56
|
+
}
|
57
|
+
}
|
58
|
+
};
|
@@ -1,43 +1,42 @@
|
|
1
|
-
module.exports = {
|
2
|
-
meta: {
|
3
|
-
type: 'problem', // `problem`, `suggestion`, or `layout`
|
4
|
-
docs: {
|
5
|
-
description: 'Enforce alias for @mui/icons-material imports',
|
6
|
-
recommended: true
|
7
|
-
},
|
8
|
-
fixable: 'code', // Or `code` or `whitespace`
|
9
|
-
schema: [] // Add a schema if the rule has options
|
10
|
-
},
|
11
|
-
|
12
|
-
create(context) {
|
13
|
-
return {
|
14
|
-
ImportDeclaration(node) {
|
15
|
-
if (
|
16
|
-
node.source.value !== '@mui/icons-material' &&
|
17
|
-
node.source.value !== 'mdi-material-ui'
|
18
|
-
) {
|
19
|
-
return;
|
20
|
-
}
|
21
|
-
|
22
|
-
for (const specifier of node.specifiers) {
|
23
|
-
if (specifier.type !== 'ImportSpecifier') {
|
24
|
-
return;
|
25
|
-
}
|
26
|
-
|
27
|
-
if (specifier.imported.name === specifier.local.name) {
|
28
|
-
context.report({
|
29
|
-
node,
|
30
|
-
message: `Import for ${node.source.value} should be aliased.`,
|
31
|
-
fix: fixer =>
|
32
|
-
|
33
|
-
specifier,
|
34
|
-
`${specifier.imported.name} as ${specifier.imported.name}Icon`
|
35
|
-
)
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
};
|
1
|
+
module.exports = {
|
2
|
+
meta: {
|
3
|
+
type: 'problem', // `problem`, `suggestion`, or `layout`
|
4
|
+
docs: {
|
5
|
+
description: 'Enforce alias for @mui/icons-material imports',
|
6
|
+
recommended: true
|
7
|
+
},
|
8
|
+
fixable: 'code', // Or `code` or `whitespace`
|
9
|
+
schema: [] // Add a schema if the rule has options
|
10
|
+
},
|
11
|
+
|
12
|
+
create(context) {
|
13
|
+
return {
|
14
|
+
ImportDeclaration(node) {
|
15
|
+
if (
|
16
|
+
node.source.value !== '@mui/icons-material' &&
|
17
|
+
node.source.value !== 'mdi-material-ui'
|
18
|
+
) {
|
19
|
+
return;
|
20
|
+
}
|
21
|
+
|
22
|
+
for (const specifier of node.specifiers) {
|
23
|
+
if (specifier.type !== 'ImportSpecifier') {
|
24
|
+
return;
|
25
|
+
}
|
26
|
+
|
27
|
+
if (specifier.imported.name === specifier.local.name) {
|
28
|
+
context.report({
|
29
|
+
node,
|
30
|
+
message: `Import for ${node.source.value} should be aliased.`,
|
31
|
+
fix: fixer =>
|
32
|
+
fixer.replaceText(
|
33
|
+
specifier,
|
34
|
+
`${specifier.imported.name} as ${specifier.imported.name}Icon`
|
35
|
+
)
|
36
|
+
});
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
};
|
41
|
+
}
|
42
|
+
};
|
@@ -1,49 +1,49 @@
|
|
1
|
-
const { getSetting } = require('../../util/settings');
|
2
|
-
|
3
|
-
let warnedForMissingPrefix = false;
|
4
|
-
|
5
|
-
module.exports = {
|
6
|
-
meta: {
|
7
|
-
type: 'problem', // `problem`, `suggestion`, or `layout`
|
8
|
-
docs: {
|
9
|
-
description: 'Enforce import styles for monorepo',
|
10
|
-
recommended: true
|
11
|
-
},
|
12
|
-
fixable: 'code', // Or `code` or `whitespace`
|
13
|
-
schema: [] // Add a schema if the rule has options
|
14
|
-
},
|
15
|
-
|
16
|
-
create(context) {
|
17
|
-
return {
|
18
|
-
ImportDeclaration(node) {
|
19
|
-
const prefix = getSetting(context, 'monorepo-prefix');
|
20
|
-
if (!prefix) {
|
21
|
-
if (!warnedForMissingPrefix) {
|
22
|
-
// eslint-disable-next-line no-console -- this is a CLI tool
|
23
|
-
console.error('Warning: agilebot/monorepo-prefix is not set.');
|
24
|
-
warnedForMissingPrefix = true;
|
25
|
-
}
|
26
|
-
return;
|
27
|
-
}
|
28
|
-
|
29
|
-
if (!node.source.value.startsWith(prefix)) {
|
30
|
-
return;
|
31
|
-
}
|
32
|
-
const values = node.source.value.split('/');
|
33
|
-
|
34
|
-
if (values[2] === 'src') {
|
35
|
-
context.report({
|
36
|
-
node,
|
37
|
-
message: `Import for ${node.source.value} should not contains src folder.`,
|
38
|
-
fix: fixer => {
|
39
|
-
const correctedPath = values
|
40
|
-
.filter((_, index) => index !== 2)
|
41
|
-
.join('/');
|
42
|
-
return fixer.replaceText(node.source, `'${correctedPath}'`);
|
43
|
-
}
|
44
|
-
});
|
45
|
-
}
|
46
|
-
}
|
47
|
-
};
|
48
|
-
}
|
49
|
-
};
|
1
|
+
const { getSetting } = require('../../util/settings');
|
2
|
+
|
3
|
+
let warnedForMissingPrefix = false;
|
4
|
+
|
5
|
+
module.exports = {
|
6
|
+
meta: {
|
7
|
+
type: 'problem', // `problem`, `suggestion`, or `layout`
|
8
|
+
docs: {
|
9
|
+
description: 'Enforce import styles for monorepo',
|
10
|
+
recommended: true
|
11
|
+
},
|
12
|
+
fixable: 'code', // Or `code` or `whitespace`
|
13
|
+
schema: [] // Add a schema if the rule has options
|
14
|
+
},
|
15
|
+
|
16
|
+
create(context) {
|
17
|
+
return {
|
18
|
+
ImportDeclaration(node) {
|
19
|
+
const prefix = getSetting(context, 'monorepo-prefix');
|
20
|
+
if (!prefix) {
|
21
|
+
if (!warnedForMissingPrefix) {
|
22
|
+
// eslint-disable-next-line no-console -- this is a CLI tool
|
23
|
+
console.error('Warning: agilebot/monorepo-prefix is not set.');
|
24
|
+
warnedForMissingPrefix = true;
|
25
|
+
}
|
26
|
+
return;
|
27
|
+
}
|
28
|
+
|
29
|
+
if (!node.source.value.startsWith(prefix)) {
|
30
|
+
return;
|
31
|
+
}
|
32
|
+
const values = node.source.value.split('/');
|
33
|
+
|
34
|
+
if (values[2] === 'src') {
|
35
|
+
context.report({
|
36
|
+
node,
|
37
|
+
message: `Import for ${node.source.value} should not contains src folder.`,
|
38
|
+
fix: fixer => {
|
39
|
+
const correctedPath = values
|
40
|
+
.filter((_, index) => index !== 2)
|
41
|
+
.join('/');
|
42
|
+
return fixer.replaceText(node.source, `'${correctedPath}'`);
|
43
|
+
}
|
44
|
+
});
|
45
|
+
}
|
46
|
+
}
|
47
|
+
};
|
48
|
+
}
|
49
|
+
};
|
@@ -1,105 +1,111 @@
|
|
1
|
-
const {
|
2
|
-
sortedTemplateElements,
|
3
|
-
templateLiteralDisplayStr,
|
4
|
-
findFormatMessageAttrNode,
|
5
|
-
findFormattedMessageAttrNode,
|
6
|
-
findAttrNodeInDefineMessages,
|
7
|
-
findAttrNodeInDefineMessage
|
8
|
-
} = require('../../util/intl');
|
9
|
-
const { getIntlIds } = require('../../util/translations');
|
10
|
-
|
11
|
-
// ------------------------------------------------------------------------------
|
12
|
-
// Rule Definition
|
13
|
-
// ------------------------------------------------------------------------------
|
14
|
-
|
15
|
-
module.exports = {
|
16
|
-
meta: {
|
17
|
-
docs: {
|
18
|
-
description: 'Validates intl message ids are in locale file',
|
19
|
-
category: 'Intl',
|
20
|
-
recommended: true
|
21
|
-
},
|
22
|
-
fixable: null,
|
23
|
-
schema: []
|
24
|
-
},
|
25
|
-
|
26
|
-
create: function (context) {
|
27
|
-
const translatedIds = getIntlIds(context);
|
28
|
-
const translatedIdSet = new Set(translatedIds);
|
29
|
-
|
30
|
-
// ----------------------------------------------------------------------
|
31
|
-
// Helpers
|
32
|
-
// ----------------------------------------------------------------------
|
33
|
-
|
34
|
-
function isLiteralTranslated(id) {
|
35
|
-
return translatedIdSet.has(id);
|
36
|
-
}
|
37
|
-
|
38
|
-
function isTemplateTranslated(re) {
|
39
|
-
return translatedIds.some(k => re.test(k));
|
40
|
-
}
|
41
|
-
|
42
|
-
function processLiteral(node) {
|
43
|
-
if (!isLiteralTranslated(node.value)) {
|
44
|
-
context.report({
|
45
|
-
node: node,
|
46
|
-
message: 'Missing id: ' + node.value
|
47
|
-
});
|
48
|
-
}
|
49
|
-
}
|
50
|
-
|
51
|
-
function processTemplateLiteral(node) {
|
52
|
-
const exStr = sortedTemplateElements(node)
|
53
|
-
.map(e => (!e.value ? '.*' : e.value.raw))
|
54
|
-
.join('');
|
55
|
-
const re = new RegExp(exStr);
|
56
|
-
|
57
|
-
if (!isTemplateTranslated(re)) {
|
58
|
-
context.report({
|
59
|
-
node: node,
|
60
|
-
message: 'Missing id pattern: ' + templateLiteralDisplayStr(node)
|
61
|
-
});
|
62
|
-
}
|
63
|
-
}
|
64
|
-
|
65
|
-
function processAttrNode(node) {
|
66
|
-
if (node.value.type === 'Literal') {
|
67
|
-
return processLiteral(node.value);
|
68
|
-
}
|
69
|
-
if (
|
70
|
-
node.value.type === 'JSXExpressionContainer' &&
|
71
|
-
node.value.expression.type === 'TemplateLiteral'
|
72
|
-
) {
|
73
|
-
return processTemplateLiteral(node.value.expression);
|
74
|
-
}
|
75
|
-
if (node.value.type === 'TemplateLiteral') {
|
76
|
-
return processTemplateLiteral(node.value);
|
77
|
-
}
|
78
|
-
context.report({
|
79
|
-
node: node,
|
80
|
-
message: 'Do not invoke intl by ' + node.value.type
|
81
|
-
});
|
82
|
-
}
|
83
|
-
|
84
|
-
// ----------------------------------------------------------------------
|
85
|
-
// Public
|
86
|
-
// ----------------------------------------------------------------------
|
87
|
-
|
88
|
-
return {
|
89
|
-
JSXIdentifier: function (node) {
|
90
|
-
const attrNode = findFormattedMessageAttrNode(node, 'id');
|
91
|
-
if (attrNode)
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
1
|
+
const {
|
2
|
+
sortedTemplateElements,
|
3
|
+
templateLiteralDisplayStr,
|
4
|
+
findFormatMessageAttrNode,
|
5
|
+
findFormattedMessageAttrNode,
|
6
|
+
findAttrNodeInDefineMessages,
|
7
|
+
findAttrNodeInDefineMessage
|
8
|
+
} = require('../../util/intl');
|
9
|
+
const { getIntlIds } = require('../../util/translations');
|
10
|
+
|
11
|
+
// ------------------------------------------------------------------------------
|
12
|
+
// Rule Definition
|
13
|
+
// ------------------------------------------------------------------------------
|
14
|
+
|
15
|
+
module.exports = {
|
16
|
+
meta: {
|
17
|
+
docs: {
|
18
|
+
description: 'Validates intl message ids are in locale file',
|
19
|
+
category: 'Intl',
|
20
|
+
recommended: true
|
21
|
+
},
|
22
|
+
fixable: null,
|
23
|
+
schema: []
|
24
|
+
},
|
25
|
+
|
26
|
+
create: function (context) {
|
27
|
+
const translatedIds = getIntlIds(context);
|
28
|
+
const translatedIdSet = new Set(translatedIds);
|
29
|
+
|
30
|
+
// ----------------------------------------------------------------------
|
31
|
+
// Helpers
|
32
|
+
// ----------------------------------------------------------------------
|
33
|
+
|
34
|
+
function isLiteralTranslated(id) {
|
35
|
+
return translatedIdSet.has(id);
|
36
|
+
}
|
37
|
+
|
38
|
+
function isTemplateTranslated(re) {
|
39
|
+
return translatedIds.some(k => re.test(k));
|
40
|
+
}
|
41
|
+
|
42
|
+
function processLiteral(node) {
|
43
|
+
if (!isLiteralTranslated(node.value)) {
|
44
|
+
context.report({
|
45
|
+
node: node,
|
46
|
+
message: 'Missing id: ' + node.value
|
47
|
+
});
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
function processTemplateLiteral(node) {
|
52
|
+
const exStr = sortedTemplateElements(node)
|
53
|
+
.map(e => (!e.value ? '.*' : e.value.raw))
|
54
|
+
.join('');
|
55
|
+
const re = new RegExp(exStr);
|
56
|
+
|
57
|
+
if (!isTemplateTranslated(re)) {
|
58
|
+
context.report({
|
59
|
+
node: node,
|
60
|
+
message: 'Missing id pattern: ' + templateLiteralDisplayStr(node)
|
61
|
+
});
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
function processAttrNode(node) {
|
66
|
+
if (node.value.type === 'Literal') {
|
67
|
+
return processLiteral(node.value);
|
68
|
+
}
|
69
|
+
if (
|
70
|
+
node.value.type === 'JSXExpressionContainer' &&
|
71
|
+
node.value.expression.type === 'TemplateLiteral'
|
72
|
+
) {
|
73
|
+
return processTemplateLiteral(node.value.expression);
|
74
|
+
}
|
75
|
+
if (node.value.type === 'TemplateLiteral') {
|
76
|
+
return processTemplateLiteral(node.value);
|
77
|
+
}
|
78
|
+
context.report({
|
79
|
+
node: node,
|
80
|
+
message: 'Do not invoke intl by ' + node.value.type
|
81
|
+
});
|
82
|
+
}
|
83
|
+
|
84
|
+
// ----------------------------------------------------------------------
|
85
|
+
// Public
|
86
|
+
// ----------------------------------------------------------------------
|
87
|
+
|
88
|
+
return {
|
89
|
+
JSXIdentifier: function (node) {
|
90
|
+
const attrNode = findFormattedMessageAttrNode(node, 'id');
|
91
|
+
if (attrNode) {
|
92
|
+
return processAttrNode(attrNode);
|
93
|
+
}
|
94
|
+
},
|
95
|
+
CallExpression: function (node) {
|
96
|
+
const attrNode = findFormatMessageAttrNode(node, 'id');
|
97
|
+
if (attrNode) {
|
98
|
+
return processAttrNode(attrNode);
|
99
|
+
}
|
100
|
+
},
|
101
|
+
Property: function (node) {
|
102
|
+
const attrNode =
|
103
|
+
findAttrNodeInDefineMessages(node, 'id') ||
|
104
|
+
findAttrNodeInDefineMessage(node, 'id');
|
105
|
+
if (attrNode) {
|
106
|
+
return processAttrNode(attrNode);
|
107
|
+
}
|
108
|
+
}
|
109
|
+
};
|
110
|
+
}
|
111
|
+
};
|