UNPKG

stylelint

Version:

A mighty CSS linter that helps you avoid errors and enforce conventions.

26 lines (23 loc) 592 B
// 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'; /** * @typedef {import('stylelint').Severity} Severity * * @param {Severity} severity * @param {Record<Severity, number>} counts * @returns {void} */ function calcSeverityCounts(severity, counts) { switch (severity) { case 'error': counts.error += 1; break; case 'warning': counts.warning += 1; break; default: throw new Error(`Unknown severity: "${severity}"`); } } module.exports = calcSeverityCounts;