You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.3 KiB
61 lines
1.3 KiB
// @ts-nocheck |
|
|
|
'use strict'; |
|
|
|
const eachDeclarationBlock = require('../../utils/eachDeclarationBlock'); |
|
const isCustomProperty = require('../../utils/isCustomProperty'); |
|
const isStandardSyntaxProperty = require('../../utils/isStandardSyntaxProperty'); |
|
const report = require('../../utils/report'); |
|
const ruleMessages = require('../../utils/ruleMessages'); |
|
const validateOptions = require('../../utils/validateOptions'); |
|
|
|
const ruleName = 'declaration-block-no-duplicate-custom-properties'; |
|
|
|
const messages = ruleMessages(ruleName, { |
|
rejected: (property) => `Unexpected duplicate "${property}"`, |
|
}); |
|
|
|
function rule(on) { |
|
return (root, result) => { |
|
const validOptions = validateOptions(result, ruleName, { actual: on }); |
|
|
|
if (!validOptions) { |
|
return; |
|
} |
|
|
|
eachDeclarationBlock(root, (eachDecl) => { |
|
const decls = new Set(); |
|
|
|
eachDecl((decl) => { |
|
const prop = decl.prop; |
|
|
|
if (!isStandardSyntaxProperty(prop)) { |
|
return; |
|
} |
|
|
|
if (!isCustomProperty(prop)) { |
|
return; |
|
} |
|
|
|
const isDuplicate = decls.has(prop); |
|
|
|
if (isDuplicate) { |
|
report({ |
|
message: messages.rejected(prop), |
|
node: decl, |
|
result, |
|
ruleName, |
|
}); |
|
|
|
return; |
|
} |
|
|
|
decls.add(prop); |
|
}); |
|
}); |
|
}; |
|
} |
|
|
|
rule.ruleName = ruleName; |
|
rule.messages = messages; |
|
module.exports = rule;
|
|
|