22 lines
429 B
JavaScript
22 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}"`);
|
||
|
}
|
||
|
};
|