eslint-plugin-svelte
Version:
ESLint plugin for Svelte using AST
73 lines (72 loc) • 2.82 kB
JavaScript
import { createRule } from '../utils/index.js';
import { equalTokens, getAttributeKeyText } from '../utils/ast-utils.js';
import { getSourceCode } from '../utils/compat.js';
export default createRule('no-dupe-use-directives', {
meta: {
docs: {
description: 'disallow duplicate `use:` directives',
category: 'Possible Errors',
recommended: true
},
schema: [],
messages: {
duplication: 'This `{{keyText}}` directive is the same and duplicate directives in L{{lineNo}}.'
},
type: 'problem'
},
create(context) {
const sourceCode = getSourceCode(context);
const directiveDataMap = new Map();
return {
SvelteDirective(node) {
if (node.kind !== 'Action')
return;
const keyText = getAttributeKeyText(node, context);
const directiveDataList = directiveDataMap.get(keyText);
if (!directiveDataList) {
directiveDataMap.set(keyText, [
{
expression: node.expression,
nodes: [node]
}
]);
return;
}
const directiveData = directiveDataList.find((data) => {
if (!data.expression || !node.expression) {
return data.expression === node.expression;
}
return equalTokens(data.expression, node.expression, sourceCode);
});
if (!directiveData) {
directiveDataList.push({
expression: node.expression,
nodes: [node]
});
return;
}
directiveData.nodes.push(node);
},
'SvelteStartTag:exit'() {
for (const [keyText, directiveDataList] of directiveDataMap) {
for (const { nodes } of directiveDataList) {
if (nodes.length < 2) {
continue;
}
for (const node of nodes) {
context.report({
node,
messageId: 'duplication',
data: {
keyText,
lineNo: String((nodes[0] !== node ? nodes[0] : nodes[1]).loc.start.line)
}
});
}
}
}
directiveDataMap.clear();
}
};
}
});