UNPKG

@stylistic/stylelint-plugin

Version:
91 lines (69 loc) 2.3 kB
import stylelint from "stylelint" import { addNamespace } from "../../utils/addNamespace.js" import atRuleParamIndex from "../../utils/atRuleParamIndex.js" import { getRuleDocUrl } from "../../utils/getRuleDocUrl.js" import mediaFeatureColonSpaceChecker from "../../utils/mediaFeatureColonSpaceChecker.js" import whitespaceChecker from "../../utils/whitespaceChecker.js" let { utils: { ruleMessages, validateOptions } } = stylelint let shortName = `media-feature-colon-space-after` export let ruleName = addNamespace(shortName) export let messages = ruleMessages(ruleName, { expectedAfter: () => `Expected single space after ":"`, rejectedAfter: () => `Unexpected whitespace after ":"`, }) export let meta = { url: getRuleDocUrl(shortName), fixable: true, } /** @type {import('stylelint').Rule} */ function rule (primary) { let checker = whitespaceChecker(`space`, primary, messages) return (root, result) => { let validOptions = validateOptions(result, ruleName, { actual: primary, possible: [`always`, `never`], }) if (!validOptions) { return } /** @type {Map<import('postcss').AtRule, number[]> | undefined} */ let fixData mediaFeatureColonSpaceChecker({ root, result, locationChecker: checker.after, checkedRuleName: ruleName, fix: (atRule, index) => { let paramColonIndex = index - atRuleParamIndex(atRule) fixData = fixData || (new Map) let colonIndices = fixData.get(atRule) || [] colonIndices.push(paramColonIndex) fixData.set(atRule, colonIndices) return true }, }) if (fixData) { for (let [atRule, colonIndices] of fixData.entries()) { let params = atRule.raws.params ? atRule.raws.params.raw : atRule.params for (let index of colonIndices.sort((a, b) => b - a)) { let beforeColon = params.slice(0, index + 1) let afterColon = params.slice(index + 1) if (primary === `always`) { params = beforeColon + afterColon.replace(/^\s*/, ` `) } else if (primary === `never`) { params = beforeColon + afterColon.replace(/^\s*/, ``) } } if (atRule.raws.params) { atRule.raws.params.raw = params } else { atRule.params = params } } } } } rule.ruleName = ruleName rule.messages = messages rule.meta = meta export default rule