UNPKG

stylelint

Version:

A mighty, modern CSS linter.

21 lines (17 loc) 389 B
'use strict'; const _ = require('lodash'); /** * @type {import('stylelint').Formatter} */ const formatter = (results) => _.flatMap(results, (result) => result.warnings.map( (warning) => `${result.source}: ` + `line ${warning.line}, ` + `col ${warning.column}, ` + `${warning.severity} - ` + `${warning.text}`, ), ).join('\n'); module.exports = formatter;