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

23 lines
492 B
JavaScript

'use strict';
const preprocessWarnings = require('./preprocessWarnings');
/**
* @type {import('stylelint').Formatter}
*/
module.exports = function compactFormatter(results) {
return results
.flatMap((result) => {
const { warnings } = preprocessWarnings(result);
return warnings.map(
(warning) =>
`${result.source}: ` +
`line ${warning.line}, ` +
`col ${warning.column}, ` +
`${warning.severity} - ` +
`${warning.text}`,
);
})
.join('\n');
};