mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 22:39:29 +08:00
16 lines
408 B
Text
16 lines
408 B
Text
/**
|
|
* @fileoverview JSON reporter, including rules metadata
|
|
* @author Chris Meyer
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function(results, data) {
|
|
return JSON.stringify({
|
|
results,
|
|
metadata: data
|
|
});
|
|
};
|