mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 08:17:34 -04:00
88 lines
2.6 KiB
JavaScript
88 lines
2.6 KiB
JavaScript
"use strict"
|
|
|
|
const atRuleParamIndex = require("../../utils/atRuleParamIndex")
|
|
const report = require("../../utils/report")
|
|
const ruleMessages = require("../../utils/ruleMessages")
|
|
const validateOptions = require("../../utils/validateOptions")
|
|
const _ = require("lodash")
|
|
const styleSearch = require("style-search")
|
|
|
|
const ruleName = "media-feature-parentheses-space-inside"
|
|
|
|
const messages = ruleMessages(ruleName, {
|
|
expectedOpening: "Expected single space after \"(\"",
|
|
rejectedOpening: "Unexpected whitespace after \"(\"",
|
|
expectedClosing: "Expected single space before \")\"",
|
|
rejectedClosing: "Unexpected whitespace before \")\"",
|
|
})
|
|
|
|
const rule = function (expectation) {
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(result, ruleName, {
|
|
actual: expectation,
|
|
possible: [
|
|
"always",
|
|
"never",
|
|
],
|
|
})
|
|
if (!validOptions) {
|
|
return
|
|
}
|
|
|
|
root.walkAtRules(/^media$/i, atRule => {
|
|
// If there are comments in the params, the complete string
|
|
// will be at atRule.raws.params.raw
|
|
const params = _.get(atRule, "raws.params.raw", atRule.params)
|
|
const indexBoost = atRuleParamIndex(atRule)
|
|
|
|
styleSearch({ source: params, target: "(" }, match => {
|
|
const nextCharIsSpace = params[match.startIndex + 1] === " "
|
|
if (nextCharIsSpace && expectation === "never") {
|
|
report({
|
|
message: messages.rejectedOpening,
|
|
node: atRule,
|
|
index: match.startIndex + 1 + indexBoost,
|
|
result,
|
|
ruleName,
|
|
})
|
|
}
|
|
if (!nextCharIsSpace && expectation === "always") {
|
|
report({
|
|
message: messages.expectedOpening,
|
|
node: atRule,
|
|
index: match.startIndex + 1 + indexBoost,
|
|
result,
|
|
ruleName,
|
|
})
|
|
}
|
|
})
|
|
|
|
styleSearch({ source: params, target: ")" }, match => {
|
|
const prevCharIsSpace = params[match.startIndex - 1] === " "
|
|
if (prevCharIsSpace && expectation === "never") {
|
|
report({
|
|
message: messages.rejectedClosing,
|
|
node: atRule,
|
|
index: match.startIndex - 1 + indexBoost,
|
|
result,
|
|
ruleName,
|
|
})
|
|
}
|
|
if (!prevCharIsSpace && expectation === "always") {
|
|
report({
|
|
message: messages.expectedClosing,
|
|
node: atRule,
|
|
index: match.startIndex - 1 + indexBoost,
|
|
result,
|
|
ruleName,
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
rule.ruleName = ruleName
|
|
rule.messages = messages
|
|
module.exports = rule
|