123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- 'use strict';
- const { underline, red, yellow, dim, green } = require('picocolors');
- const pluralize = require('../utils/pluralize');
- const stringFormatter = require('./stringFormatter');
- const terminalLink = require('./terminalLink');
- /** @typedef {import('stylelint').Formatter} Formatter */
- /** @typedef {import('stylelint').LintResult} LintResult */
- /** @typedef {import('stylelint').Warning} Warning */
- /** @typedef {import('stylelint').Severity} Severity */
- /** @typedef {import('stylelint').RuleMeta} RuleMeta */
- /**
- * @type {Formatter}
- */
- module.exports = function verboseFormatter(results, returnValue) {
- let output = stringFormatter(results, returnValue);
- if (output === '') {
- output = '\n';
- }
- const ignoredCount = results.filter((result) => result.ignored).length;
- const checkedDisplay = ignoredCount
- ? `${results.length - ignoredCount} of ${results.length}`
- : results.length;
- output += underline(`${checkedDisplay} ${pluralize('source', results.length)} checked\n`);
- for (const result of results) {
- let formatting = green;
- if (result.errored) {
- formatting = red;
- } else if (result.warnings.length) {
- formatting = yellow;
- } else if (result.ignored) {
- formatting = dim;
- }
- let sourceText = fileLink(result.source);
- if (result.ignored) {
- sourceText += ' (ignored)';
- }
- output += formatting(` ${sourceText}\n`);
- }
- const warnings = results.flatMap((r) => r.warnings);
- if (warnings.length === 0) {
- output += '\n0 problems found\n';
- } else {
- const warningsBySeverity = groupBy(warnings, (w) => w.severity);
- let fixableProblemsFound = false;
- /**
- * @param {Severity} severity
- */
- const printProblems = (severity) => {
- const problems = warningsBySeverity[severity];
- if (problems === undefined) return;
- output += '\n';
- output += underline(`${problems.length} ${pluralize(severity, problems.length)} found\n`);
- const problemsByRule = groupBy(problems, (w) => w.rule);
- const metadata = returnValue.ruleMetadata;
- for (const [rule, list] of Object.entries(problemsByRule)) {
- const meta = metadata[rule];
- const fixable = meta && meta.fixable ? ' (maybe fixable)' : '';
- output += dim(` ${ruleLink(rule, meta)}: ${list.length}${fixable}\n`);
- if (!fixableProblemsFound && meta && meta.fixable) {
- fixableProblemsFound = true;
- }
- }
- };
- printProblems('error');
- printProblems('warning');
- if (fixableProblemsFound) {
- output += yellow('\nYou may fix some problems with the "--fix" option.\n');
- }
- }
- return `${output}\n`;
- };
- /**
- * @template {string} K
- * @param {Warning[]} array
- * @param {(w: Warning) => K} keyFn
- * @returns {Record<K, Warning[]>}
- */
- function groupBy(array, keyFn) {
- /** @type {Record<string, Warning[]>} */
- const result = {};
- for (const item of array) {
- const key = keyFn(item);
- let warnings = result[key];
- if (warnings === undefined) {
- result[key] = warnings = [];
- }
- warnings.push(item);
- }
- return result;
- }
- /**
- * @param {string | undefined} source
- * @returns {string}
- */
- function fileLink(source) {
- if (!source || source.startsWith('<')) {
- return `${source}`;
- }
- return terminalLink(source, `file://${source}`);
- }
- /**
- * @param {string} rule
- * @param {Partial<RuleMeta> | undefined} metadata
- * @returns {string}
- */
- function ruleLink(rule, metadata) {
- if (metadata && metadata.url) {
- return terminalLink(rule, metadata.url);
- }
- return rule;
- }
|