mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-26 06:07:35 +08:00
16 lines
408 B
JavaScript
16 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
|
|
});
|
|
};
|