ec0lint-style
Version:
CSS linter for reducing digital footprint with ec0lint.
21 lines (17 loc) • 476 B
JavaScript
;
/**
* Omit any properties starting with `_`, which are fake-private
*
* @type {import('ec0lint-style').Formatter}
*/
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);
};