stylelint
Version:
A mighty, modern CSS linter.
22 lines (18 loc) • 510 B
JavaScript
/**
* Omit any properties starting with `_`, which are fake-private
*
* @param {import('stylelint').StylelintResult[]} results
* @returns {string}
*/
module.exports = function jsonFormatter(results) {
const cleanedResults = results.map((result) =>
Object.entries(result)
.filter(([key]) => !key.startsWith('_'))
.reduce((/** @type {{ [key: string]: any }} */ obj, [key, value]) => {
obj[key] = value;
return obj;
}, {}),
);
return JSON.stringify(cleanedResults);
};
;