linter-bundle
Version:
Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.
14 lines (11 loc) • 419 B
JavaScript
// @ts-nocheck
import hasBlock from 'stylelint/lib/utils/hasBlock.mjs';
/**
* Check if a statement has an empty block.
*
* @param {import('postcss').Rule | import('postcss').AtRule} statement - postcss rule or at-rule node
* @returns {boolean} True if the statement has a block and it is empty
*/
export default function hasEmptyBlock (statement) {
return hasBlock(statement) && statement.nodes.length === 0;
}