You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
854 B
39 lines
854 B
// @ts-nocheck |
|
|
|
'use strict'; |
|
|
|
const atRuleParamIndex = require('../utils/atRuleParamIndex'); |
|
const report = require('../utils/report'); |
|
const styleSearch = require('style-search'); |
|
|
|
module.exports = function (opts) { |
|
opts.root.walkAtRules(/^media$/i, (atRule) => { |
|
const params = atRule.raws.params ? atRule.raws.params.raw : atRule.params; |
|
|
|
styleSearch({ source: params, target: ':' }, (match) => { |
|
checkColon(params, match.startIndex, atRule); |
|
}); |
|
}); |
|
|
|
function checkColon(source, index, node) { |
|
opts.locationChecker({ |
|
source, |
|
index, |
|
err: (m) => { |
|
const colonIndex = index + atRuleParamIndex(node); |
|
|
|
if (opts.fix && opts.fix(node, colonIndex)) { |
|
return; |
|
} |
|
|
|
report({ |
|
message: m, |
|
node, |
|
index: colonIndex, |
|
result: opts.result, |
|
ruleName: opts.checkedRuleName, |
|
}); |
|
}, |
|
}); |
|
} |
|
};
|
|
|