/
drndsv
/
react
Обзор
Документация
Войти
/
drndsv
/
react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js
41 строка
1 KB
drndsv
Initial commit
14 апр 2025, 22:53
14 апр 2025, 22:53
641ac8a
Код
Авторство
О чём код?
/** * @fileoverview JSLint XML reporter * @author Ian Christian Myers */ "use strict"; const xmlEscape = require("../xml-escape"); //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ module.exports = function(results) { let output = ""; output += "<?xml version=\"1.0\" encoding=\"utf-8\"?>"; output += "<jslint>"; results.forEach(result => { const messages = result.messages; output += `<file name="${result.filePath}">`; messages.forEach(message => { output += [ `<issue line="${message.line}"`, `char="${message.column}"`, `evidence="${xmlEscape(message.source || "")}"`, `reason="${xmlEscape(message.message || "")}${message.ruleId ? ` (${message.ruleId})` : ""}" />` ].join(" "); }); output += "</file>"; }); output += "</jslint>"; return output; };