1
0
mirror of https://github.com/thangisme/notes.git synced 2024-11-01 06:17:18 -04:00
notes/node_modules/stylelint/lib/rules/declaration-block-no-redundant-longhand-properties/index.js

81 lines
2.1 KiB
JavaScript
Raw Normal View History

2017-03-09 13:16:08 -05:00
"use strict"
const _ = require("lodash")
const optionsMatches = require("../../utils/optionsMatches")
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-redundant-longhand-properties"
const messages = ruleMessages(ruleName, {
expected: props => `Expected shorthand property "${props}"`,
})
const rule = function (actual, options) {
return (root, result) => {
const validOptions = validateOptions(result, ruleName, { actual }, {
actual: options,
possible: {
ignoreShorthands: [_.isString],
},
optional: true,
})
if (!validOptions) {
return
}
const longhandProperties = _.transform(shorthandData, (result, values, key) => {
if (optionsMatches(options, "ignoreShorthands", key)) {
return
}
values.forEach(value => {
(result[value] || (result[value] = [])).push(key)
})
})
root.walkRules(check)
root.walkAtRules(check)
function check(statement) {
const longhandDeclarations = {}
// Shallow iteration so nesting doesn't produce
// false positives
statement.each(node => {
if (node.type !== "decl") {
return
}
const prop = node.prop.toLowerCase()
const shorthandProperties = longhandProperties[prop]
if (!shorthandProperties) {
return
}
shorthandProperties.forEach(shorthandProperty => {
(longhandDeclarations[shorthandProperty] || (longhandDeclarations[shorthandProperty] = [])).push(prop)
if (!_.isEqual(shorthandData[shorthandProperty].sort(), longhandDeclarations[shorthandProperty].sort())) {
return
}
report({
ruleName,
result,
node,
message: messages.expected(shorthandProperty),
})
})
})
}
}
}
rule.ruleName = ruleName
rule.messages = messages
module.exports = rule