📄 json-with-metadata.js
/home/palash/git/site/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js
Language: js • Lines: 16
/**
 * @fileoverview JSON reporter, including rules metadata
 * @author Chris Meyer
 */
"use strict";

//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------

module.exports = function(results, data) {
    return JSON.stringify({
        results,
        metadata: data
    });
};