stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
19 lines (16 loc) • 454 B
JavaScript
/**
* Omit any properties starting with `_`, which are fake-private
*
* @type {import('stylelint').Formatter}
*/
export default 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);
}