stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
59 lines (45 loc) • 1.76 kB
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
;
const preprocessWarnings = require('./preprocessWarnings.cjs');
/**
* @see https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions
*
* @type {import('stylelint').Formatter}
*
* @deprecated See https://stylelint.io/awesome-stylelint#formatters for alternative formatters.
*/
function githubFormatter(results, returnValue) {
const title = 'Stylelint problem';
const metadata = returnValue.ruleMetadata;
const lines = results.flatMap((result) => {
const { source, warnings } = preprocessWarnings(result);
return warnings.map(({ line, column, endLine, endColumn, text, severity, rule }) => {
const msg = buildMessage(text, metadata[rule]);
return endLine === undefined
? `::${severity} file=${source},line=${line},col=${column},title=${title}::${msg}`
: `::${severity} file=${source},line=${line},col=${column},endLine=${endLine},endColumn=${endColumn},title=${title}::${msg}`;
});
});
lines.push(`::notice title=Stylelint deprecation::The github formatter is deprecated`);
lines.push('');
return lines.join('\n');
}
/**
* @param {string} msg
* @param {Partial<import('stylelint').RuleMeta> | undefined} metadata
* @returns {string}
*/
function buildMessage(msg, metadata) {
if (!metadata) return msg;
const url = metadata.url ? ` - ${metadata.url}` : '';
let additional = [
metadata.fixable ? 'maybe fixable' : '',
metadata.deprecated ? 'deprecated' : '',
]
.filter(Boolean)
.join(', ');
additional = additional ? ` [${additional}]` : '';
return `${msg}${additional}${url}`;
}
module.exports = githubFormatter;