UNPKG

stylelint

Version:
40 lines (34 loc) 1.17 kB
import { ruleMessages, validateOptions, whitespaceChecker, } from "../../utils" import { mediaQueryListCommaWhitespaceChecker } from "../media-query-list-comma-space-after" export const ruleName = "media-query-list-comma-newline-after" export const messages = ruleMessages(ruleName, { expectedAfter: () => "Expected newline after \",\"", expectedAfterMultiLine: () => "Expected newline after \",\" in a multi-line list", rejectedAfterMultiLine: () => "Unexpected whitespace after \",\" in a multi-line list", }) export default function (expectation) { const checker = whitespaceChecker("newline", expectation, messages) return (root, result) => { const validOptions = validateOptions(result, ruleName, { actual: expectation, possible: [ "always", "always-multi-line", "never-multi-line", ], }) if (!validOptions) { return } // Only check for the newline after the comma, while allowing // arbitrary indentation after the newline mediaQueryListCommaWhitespaceChecker({ root, result, locationChecker: checker.afterOneOnly, checkedRuleName: ruleName, }) } }