mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 03:55:32 +00:00
11 lines
268 B
JavaScript
11 lines
268 B
JavaScript
/**
|
|
* Omit any properties starting with `_`, which are fake-private
|
|
*
|
|
* @type {import('stylelint').Formatter}
|
|
*/
|
|
export default function jsonFormatter(results) {
|
|
return JSON.stringify(results, (key, value) => {
|
|
return key[0] === '_' ? undefined : value;
|
|
});
|
|
}
|