mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
17 lines
408 B
JavaScript
17 lines
408 B
JavaScript
|
/**
|
||
|
* @fileoverview JSON reporter, including rules metadata
|
||
|
* @author Chris Meyer
|
||
|
*/
|
||
|
"use strict";
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
// Public Interface
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
module.exports = function(results, data) {
|
||
|
return JSON.stringify({
|
||
|
results,
|
||
|
metadata: data
|
||
|
});
|
||
|
};
|