stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
33 lines (28 loc) • 903 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 addEmptyLineBefore = require('./addEmptyLineBefore.cjs');
const validateTypes = require('./validateTypes.cjs');
const removeEmptyLinesBefore = require('./removeEmptyLinesBefore.cjs');
/**
* fix callback for *-empty-line-before rules
* @param {object} o
* @param {import('postcss').Node} o.node
* @param {string=} o.newline
* @param {'add'|'remove'} o.action
* @throws {TypeError}
*/
function fixEmptyLinesBefore({ node, newline, action }) {
validateTypes.assert(newline);
switch (action) {
case 'add':
addEmptyLineBefore(node, newline);
break;
case 'remove':
removeEmptyLinesBefore(node, newline);
break;
default:
throw new TypeError(`Unknown action ${action}`);
}
}
module.exports = fixEmptyLinesBefore;