elearning/Frontend-Learner/node_modules/eslint/lib/cli-engine/formatters/json.js

14 lines
347 B
JavaScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
/**
* @fileoverview JSON reporter
* @author Burak Yigit Kaya aka BYK
*/
"use strict";
//------------------------------------------------------------------------------
// Public Interface
//------------------------------------------------------------------------------
module.exports = function (results) {
return JSON.stringify(results);
};