UNPKG

stylelint

Version:
55 lines (45 loc) 1.54 kB
import _ from "lodash" import { isStandardSyntaxRule, report, ruleMessages, styleSearch, validateOptions, } from "../../utils" import { levelOneAndTwoPseudoElements } from "../../reference/keywordSets" export const ruleName = "selector-pseudo-element-colon-notation" export const messages = ruleMessages(ruleName, { expected: (q) => `Expected ${q} colon pseudo-element notation`, }) export default function (expectation) { return (root, result) => { const validOptions = validateOptions(result, ruleName, { actual: expectation, possible: [ "single", "double", ], }) if (!validOptions) { return } root.walkRules(rule => { if (!isStandardSyntaxRule(rule)) { return } const selector = rule.selector // get out early if no pseudo elements or classes if (selector.indexOf(":") === -1) { return } // match only level 1 and 2 pseudo elements const pseudoElementsWithColons = _.toArray(levelOneAndTwoPseudoElements).map(x => `:${x}`) styleSearch({ source: selector.toLowerCase(), target: pseudoElementsWithColons }, match => { const prevCharIsColon = selector[match.startIndex - 1] === ":" if (expectation === "single" && !prevCharIsColon) { return } if (expectation === "double" && prevCharIsColon) { return } report({ message: messages.expected(expectation), node: rule, index: match.startIndex, result, ruleName, }) }) }) } }