Sha256: 3103648a0d781e58c5d39aadb11e61a55b814269324f66652429256c030c4e25

Contents?: true

Size: 1.66 KB

Versions: 23

Compression:

Stored size: 1.66 KB

Contents

'use strict';

const _ = require('lodash');
const chalk = require('chalk');
const stringFormatter = require('./stringFormatter');

/**
 * @param {import('stylelint').StylelintResult[]} results
 * @returns {string}
 */
module.exports = function (results) {
	let output = stringFormatter(results);

	if (output === '') {
		output = '\n';
	}

	const sourceWord = results.length > 1 ? 'sources' : 'source';
	const ignoredCount = results.filter((result) => result.ignored).length;
	const checkedDisplay = ignoredCount
		? `${results.length - ignoredCount} of ${results.length}`
		: results.length;

	output += chalk.underline(`${checkedDisplay} ${sourceWord} checked\n`);
	results.forEach((result) => {
		let formatting = 'green';

		if (result.errored) {
			formatting = 'red';
		} else if (result.warnings.length) {
			formatting = 'yellow';
		} else if (result.ignored) {
			formatting = 'dim';
		}

		let sourceText = `${result.source}`;

		if (result.ignored) {
			sourceText += ' (ignored)';
		}

		output += _.get(chalk, formatting)(` ${sourceText}\n`);
	});

	const warnings = _.flatten(results.map((r) => r.warnings));
	const warningsBySeverity = _.groupBy(warnings, 'severity');
	const problemWord = warnings.length === 1 ? 'problem' : 'problems';

	output += chalk.underline(`\n${warnings.length} ${problemWord} found\n`);

	for (const [severityLevel, warningList] of Object.entries(warningsBySeverity)) {
		const warningsByRule = _.groupBy(warningList, 'rule');

		output += ` severity level "${severityLevel}": ${warningList.length}\n`;

		for (const [rule, list] of Object.entries(warningsByRule)) {
			output += chalk.dim(`  ${rule}: ${list.length}\n`);
		}
	}

	return `${output}\n`;
};

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trusty-cms-5.0.7 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-5.0.6 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-5.0.5 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-5.0.4 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-5.0.3 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-5.0.2 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-5.0.1 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.3.5 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-5.0.0 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.3.4 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.3.3 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.3.2 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.3.1 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.3 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.2.3 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.2.2 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.2.1 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.2 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.1.9 node_modules/stylelint/lib/formatters/verboseFormatter.js
trusty-cms-4.1.8 node_modules/stylelint/lib/formatters/verboseFormatter.js