mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:37:16 -04:00
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
"use strict"
|
|
|
|
const report = require("../../utils/report")
|
|
const ruleMessages = require("../../utils/ruleMessages")
|
|
const shorthandData = require("../../reference/shorthandData")
|
|
const validateOptions = require("../../utils/validateOptions")
|
|
|
|
const ruleName = "declaration-block-no-shorthand-property-overrides"
|
|
|
|
const messages = ruleMessages(ruleName, {
|
|
rejected: (shorthand, original) => `Unexpected shorthand "${shorthand}" after "${original}"`,
|
|
})
|
|
|
|
const rule = function (actual) {
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(result, ruleName, { actual })
|
|
if (!validOptions) {
|
|
return
|
|
}
|
|
|
|
root.walkRules(check)
|
|
root.walkAtRules(check)
|
|
|
|
function check(statement) {
|
|
const declarations = {}
|
|
// Shallow iteration so nesting doesn't produce
|
|
// false positives
|
|
statement.each(node => {
|
|
if (node.type !== "decl") {
|
|
return
|
|
}
|
|
const prop = node.prop
|
|
|
|
const overrideables = shorthandData[prop.toLowerCase()]
|
|
if (!overrideables) {
|
|
declarations[prop.toLowerCase()] = prop
|
|
return
|
|
}
|
|
overrideables.forEach(longhandProp => {
|
|
if (!declarations.hasOwnProperty(longhandProp)) {
|
|
return
|
|
}
|
|
report({
|
|
ruleName,
|
|
result,
|
|
node,
|
|
message: messages.rejected(prop, declarations[longhandProp]),
|
|
})
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
rule.ruleName = ruleName
|
|
rule.messages = messages
|
|
module.exports = rule
|