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.
74 lines
1.7 KiB
74 lines
1.7 KiB
// @ts-nocheck |
|
|
|
'use strict'; |
|
|
|
const _ = require('lodash'); |
|
const isStandardSyntaxAtRule = require('../../utils/isStandardSyntaxAtRule'); |
|
const report = require('../../utils/report'); |
|
const ruleMessages = require('../../utils/ruleMessages'); |
|
const validateOptions = require('../../utils/validateOptions'); |
|
|
|
const ruleName = 'at-rule-property-requirelist'; |
|
|
|
const messages = ruleMessages(ruleName, { |
|
expected: (property, atRule) => `Expected property "${property}" for at-rule "${atRule}"`, |
|
}); |
|
|
|
function rule(list) { |
|
return (root, result) => { |
|
const validOptions = validateOptions(result, ruleName, { |
|
actual: list, |
|
possible: [_.isObject], |
|
}); |
|
|
|
if (!validOptions) { |
|
return; |
|
} |
|
|
|
result.warn( |
|
`'${ruleName}' has been deprecated. Instead use 'at-rule-property-required-list'.`, |
|
{ |
|
stylelintType: 'deprecation', |
|
stylelintReference: `https://github.com/stylelint/stylelint/blob/13.7.0/lib/rules/${ruleName}/README.md`, |
|
}, |
|
); |
|
|
|
root.walkAtRules((atRule) => { |
|
if (!isStandardSyntaxAtRule(atRule)) { |
|
return; |
|
} |
|
|
|
const { name, nodes } = atRule; |
|
const atRuleName = name.toLowerCase(); |
|
|
|
if (!list[atRuleName]) { |
|
return; |
|
} |
|
|
|
list[atRuleName].forEach((property) => { |
|
const propertyName = property.toLowerCase(); |
|
|
|
const hasProperty = nodes.find( |
|
({ type, prop }) => type === 'decl' && prop.toLowerCase() === propertyName, |
|
); |
|
|
|
if (hasProperty) { |
|
return; |
|
} |
|
|
|
return report({ |
|
message: messages.expected(propertyName, atRuleName), |
|
node: atRule, |
|
result, |
|
ruleName, |
|
}); |
|
}); |
|
}); |
|
}; |
|
} |
|
|
|
rule.ruleName = ruleName; |
|
rule.messages = messages; |
|
rule.meta = { deprecated: true }; |
|
|
|
module.exports = rule;
|
|
|