first commit
This commit is contained in:
32
node_modules/stylelint/lib/utils/fixEmptyLinesBefore.cjs
generated
vendored
Normal file
32
node_modules/stylelint/lib/utils/fixEmptyLinesBefore.cjs
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// NOTICE: This file is generated by Rollup. To modify it,
|
||||
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
||||
'use strict';
|
||||
|
||||
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;
|
||||
Reference in New Issue
Block a user