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>
14 lines
349 B
JavaScript
14 lines
349 B
JavaScript
/**
|
|
* @fileoverview JSON reporter
|
|
* @author Burak Yigit Kaya aka BYK
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function(results) {
|
|
return JSON.stringify(results);
|
|
};
|