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>
78 lines
1.7 KiB
JavaScript
78 lines
1.7 KiB
JavaScript
/**
|
|
* @fileoverview Enforce no duplicate props
|
|
* @author Markus Ånöstam
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const has = require('hasown');
|
|
const docsUrl = require('../util/docsUrl');
|
|
const report = require('../util/report');
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
// ------------------------------------------------------------------------------
|
|
|
|
const messages = {
|
|
noDuplicateProps: 'No duplicate props allowed',
|
|
};
|
|
|
|
/** @type {import('eslint').Rule.RuleModule} */
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: 'Disallow duplicate properties in JSX',
|
|
category: 'Possible Errors',
|
|
recommended: true,
|
|
url: docsUrl('jsx-no-duplicate-props'),
|
|
},
|
|
|
|
messages,
|
|
|
|
schema: [{
|
|
type: 'object',
|
|
properties: {
|
|
ignoreCase: {
|
|
type: 'boolean',
|
|
},
|
|
},
|
|
additionalProperties: false,
|
|
}],
|
|
},
|
|
|
|
create(context) {
|
|
const configuration = context.options[0] || {};
|
|
const ignoreCase = configuration.ignoreCase || false;
|
|
|
|
return {
|
|
JSXOpeningElement(node) {
|
|
const props = {};
|
|
|
|
node.attributes.forEach((decl) => {
|
|
if (decl.type === 'JSXSpreadAttribute') {
|
|
return;
|
|
}
|
|
|
|
let name = decl.name.name;
|
|
|
|
if (typeof name !== 'string') {
|
|
return;
|
|
}
|
|
|
|
if (ignoreCase) {
|
|
name = name.toLowerCase();
|
|
}
|
|
|
|
if (has(props, name)) {
|
|
report(context, messages.noDuplicateProps, 'noDuplicateProps', {
|
|
node: decl,
|
|
});
|
|
} else {
|
|
props[name] = 1;
|
|
}
|
|
});
|
|
},
|
|
};
|
|
},
|
|
};
|