UNPKG

@stylistic/stylelint-plugin

Version:
45 lines (34 loc) 920 B
/** * Fixes whitespace around commas in function arguments. * @param {{ * div: import('postcss-value-parser').DivNode, * index: number, * nodes: import('postcss-value-parser').Node[], * expectation: string, * position: 'before' | 'after', * symb: string, * }} params - The parameters object * @returns {boolean} True if the fix was applied, false otherwise. */ export function functionCommaSpaceFix (params) { let { div, index, nodes, expectation, position, symb } = params if (expectation.startsWith(`always`)) { div[position] = symb return true } if (expectation.startsWith(`never`)) { div[position] = `` for (let i = index + 1; i < nodes.length; i += 1) { let node = nodes[i] if (node === undefined) continue if (node.type === `comment`) continue if (node.type === `space`) { node.value = `` continue } break } return true } return false }