Files
ai-course/node_modules/eslint-plugin-react/lib/rules/jsx-props-no-spread-multi.js
KQL ce6aa207e9 fix: 修复图片路径以适配GitHub Pages base path
- 将所有图片路径从绝对路径改为使用 process.env.PUBLIC_URL
- 修复 HomePage.tsx 中所有图片引用
- 修复 CoursePage.tsx 中所有图片引用
- 确保图片在 GitHub Pages 上正确加载

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-04 09:24:45 +08:00

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);
});
},
};
},
};