stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
31 lines (24 loc) • 683 B
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
;
const isStandardSyntaxSelector = require('./isStandardSyntaxSelector.cjs');
/**
* Check whether a Node is a standard rule
*
* @param {import('postcss').Rule | import('postcss-less').Rule} rule
* @returns {boolean}
*/
function isStandardSyntaxRule(rule) {
if (rule.type !== 'rule') {
return false;
}
// Ignore Less &:extend rule
if ('extend' in rule && rule.extend) {
return false;
}
if (!isStandardSyntaxSelector(rule.selector)) {
return false;
}
return true;
}
module.exports = isStandardSyntaxRule;