astro-ghostcms/.pnpm-store/v3/files/8e/570f3e42d7e44943b157d71c7ff...

17 lines
408 B
Plaintext

/**
* @fileoverview JSON reporter, including rules metadata
* @author Chris Meyer
*/
"use strict";
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
module.exports = function(results, data) {
return JSON.stringify({
results,
metadata: data
});
};