epiphany/node_modules/stylelint/lib/formatters/calcSeverityCounts.js
2023-12-09 22:48:07 -08:00

21 lines
429 B
JavaScript

'use strict';
/**
* @typedef {import('stylelint').Severity} Severity
*
* @param {Severity} severity
* @param {Record<Severity, number>} counts
* @returns {void}
*/
module.exports = 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}"`);
}
};