mirror of
https://git.proxmox.com/git/pve-eslint
synced 2025-10-05 20:55:26 +00:00

includes a (minimal) working wrapper Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
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
|
|
});
|
|
};
|