Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
/**
|
|
* @fileoverview Prevent JSX prop spreading the same expression multiple times
|
|
* @author Simon Schick
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const docsUrl = require('../util/docsUrl');
|
|
const report = require('../util/report');
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
// ------------------------------------------------------------------------------
|
|
|
|
const messages = {
|
|
noMultiSpreading: 'Spreading the same expression multiple times is forbidden',
|
|
};
|
|
|
|
/** @type {import('eslint').Rule.RuleModule} */
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: 'Disallow JSX prop spreading the same identifier multiple times',
|
|
category: 'Best Practices',
|
|
recommended: false,
|
|
url: docsUrl('jsx-props-no-spread-multi'),
|
|
},
|
|
messages,
|
|
},
|
|
|
|
create(context) {
|
|
return {
|
|
JSXOpeningElement(node) {
|
|
const spreads = node.attributes.filter(
|
|
(attr) => attr.type === 'JSXSpreadAttribute'
|
|
&& attr.argument.type === 'Identifier'
|
|
);
|
|
if (spreads.length < 2) {
|
|
return;
|
|
}
|
|
// We detect duplicate expressions by their identifier
|
|
const identifierNames = new Set();
|
|
spreads.forEach((spread) => {
|
|
if (identifierNames.has(spread.argument.name)) {
|
|
report(context, messages.noMultiSpreading, 'noMultiSpreading', {
|
|
node: spread,
|
|
});
|
|
}
|
|
identifierNames.add(spread.argument.name);
|
|
});
|
|
},
|
|
};
|
|
},
|
|
};
|