mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-19 12:35:32 +00:00
77 lines
1.9 KiB
JavaScript
77 lines
1.9 KiB
JavaScript
import { isRegExp, isString } from '../../utils/validateTypes.mjs';
|
|
import { isAtRule } from '../../utils/typeGuards.mjs';
|
|
import isStandardSyntaxAtRule from '../../utils/isStandardSyntaxAtRule.mjs';
|
|
import isStandardSyntaxRule from '../../utils/isStandardSyntaxRule.mjs';
|
|
import optionsMatches from '../../utils/optionsMatches.mjs';
|
|
import report from '../../utils/report.mjs';
|
|
import ruleMessages from '../../utils/ruleMessages.mjs';
|
|
import validateOptions from '../../utils/validateOptions.mjs';
|
|
|
|
const ruleName = 'no-invalid-position-at-import-rule';
|
|
|
|
const messages = ruleMessages(ruleName, {
|
|
rejected: 'Unexpected invalid position @import rule',
|
|
});
|
|
|
|
const meta = {
|
|
url: 'https://stylelint.io/user-guide/rules/no-invalid-position-at-import-rule',
|
|
};
|
|
|
|
/** @type {import('stylelint').CoreRules[ruleName]} */
|
|
const rule = (primary, secondaryOptions) => {
|
|
return (root, result) => {
|
|
const validOptions = validateOptions(
|
|
result,
|
|
ruleName,
|
|
{ actual: primary },
|
|
{
|
|
actual: secondaryOptions,
|
|
possible: {
|
|
ignoreAtRules: [isString, isRegExp],
|
|
},
|
|
optional: true,
|
|
},
|
|
);
|
|
|
|
if (!validOptions) {
|
|
return;
|
|
}
|
|
|
|
let invalidPosition = false;
|
|
|
|
root.walk((node) => {
|
|
const nodeName = ('name' in node && node.name && node.name.toLowerCase()) || '';
|
|
|
|
if (
|
|
(isAtRule(node) &&
|
|
nodeName !== 'charset' &&
|
|
nodeName !== 'import' &&
|
|
nodeName !== 'layer' &&
|
|
!optionsMatches(secondaryOptions, 'ignoreAtRules', node.name) &&
|
|
isStandardSyntaxAtRule(node)) ||
|
|
(node.type === 'rule' && isStandardSyntaxRule(node))
|
|
) {
|
|
invalidPosition = true;
|
|
|
|
return;
|
|
}
|
|
|
|
if (isAtRule(node) && nodeName === 'import' && invalidPosition) {
|
|
report({
|
|
message: messages.rejected,
|
|
messageArgs: [],
|
|
node,
|
|
result,
|
|
ruleName,
|
|
word: node.toString(),
|
|
});
|
|
}
|
|
});
|
|
};
|
|
};
|
|
|
|
rule.ruleName = ruleName;
|
|
rule.messages = messages;
|
|
rule.meta = meta;
|
|
export default rule;
|