stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
28 lines (24 loc) • 661 B
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
;
const constants = require('../constants.cjs');
/**
* @import {Severity} from 'stylelint'
*
* @param {Severity} severity
* @param {Record<Severity, number>} counts
* @returns {void}
*/
function calcSeverityCounts(severity, counts) {
switch (severity) {
case constants.SEVERITY_ERROR:
counts.error += 1;
break;
case constants.SEVERITY_WARNING:
counts.warning += 1;
break;
default:
throw new Error(`Unknown severity: "${severity}"`);
}
}
module.exports = calcSeverityCounts;