mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:27:15 -04:00
62 lines
1.7 KiB
JavaScript
62 lines
1.7 KiB
JavaScript
"use strict"
|
|
|
|
const isAutoprefixable = require("../../utils/isAutoprefixable")
|
|
const isStandardSyntaxDeclaration = require("../../utils/isStandardSyntaxDeclaration")
|
|
const isStandardSyntaxProperty = require("../../utils/isStandardSyntaxProperty")
|
|
const report = require("../../utils/report")
|
|
const ruleMessages = require("../../utils/ruleMessages")
|
|
const validateOptions = require("../../utils/validateOptions")
|
|
const styleSearch = require("style-search")
|
|
|
|
const ruleName = "value-no-vendor-prefix"
|
|
|
|
const messages = ruleMessages(ruleName, {
|
|
rejected: value => `Unexpected vendor-prefix "${value}"`,
|
|
})
|
|
|
|
const valuePrefixes = [
|
|
"-webkit-",
|
|
"-moz-",
|
|
"-ms-",
|
|
"-o-",
|
|
]
|
|
|
|
const rule = function (actual) {
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(result, ruleName, { actual })
|
|
if (!validOptions) {
|
|
return
|
|
}
|
|
|
|
root.walkDecls(decl => {
|
|
if (!isStandardSyntaxDeclaration(decl) || !isStandardSyntaxProperty(decl.prop) || decl.value[0] !== "-") {
|
|
return
|
|
}
|
|
|
|
const prop = decl.prop,
|
|
value = decl.value
|
|
|
|
// Search the full declaration in order to get an accurate index
|
|
|
|
styleSearch({ source: value.toLowerCase(), target: valuePrefixes }, match => {
|
|
const fullIdentifier = /^(-[a-z-]+)\b/i.exec(value.slice(match.startIndex))[1]
|
|
if (!isAutoprefixable.propertyValue(prop, fullIdentifier)) {
|
|
return
|
|
}
|
|
|
|
report({
|
|
message: messages.rejected(fullIdentifier),
|
|
node: decl,
|
|
index: prop.length + (decl.raws.between || "").length + match.startIndex,
|
|
result,
|
|
ruleName,
|
|
})
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
rule.ruleName = ruleName
|
|
rule.messages = messages
|
|
module.exports = rule
|