mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-17 11:35:36 +00:00
115 lines
3.4 KiB
JavaScript
115 lines
3.4 KiB
JavaScript
import { SEVERITY_ERROR } from './constants.mjs';
|
|
import process from 'node:process';
|
|
|
|
/** @import {LintResult as StylelintResult, PostcssResult} from 'stylelint' */
|
|
|
|
/**
|
|
* @param {PostcssResult} [postcssResult]
|
|
* @param {import('stylelint').CssSyntaxError} [cssSyntaxError]
|
|
* @returns {StylelintResult}
|
|
*/
|
|
export default function createPartialStylelintResult(postcssResult, cssSyntaxError) {
|
|
/** @type {StylelintResult} */
|
|
let stylelintResult;
|
|
/** @type {string | undefined} */
|
|
let source;
|
|
|
|
if (postcssResult && postcssResult.root) {
|
|
if (postcssResult.root.source) {
|
|
source = postcssResult.root.source.input.file;
|
|
|
|
if (!source && 'id' in postcssResult.root.source.input) {
|
|
source = postcssResult.root.source.input.id;
|
|
}
|
|
}
|
|
|
|
// @ts-expect-error -- TS2339: Property 'noDeprecation' does not exist on type 'Process'.
|
|
// https://github.com/nodejs/node/blob/main/doc/api/process.md#processnodeprecation
|
|
const includeDeprecations = !process.noDeprecation;
|
|
const deprecationMessages = includeDeprecations
|
|
? postcssResult.messages.filter((message) => message.stylelintType === 'deprecation')
|
|
: [];
|
|
const deprecations = deprecationMessages.map((deprecationMessage) => {
|
|
return {
|
|
text: deprecationMessage.text,
|
|
reference: deprecationMessage.stylelintReference,
|
|
};
|
|
});
|
|
|
|
const invalidOptionMessages = postcssResult.messages.filter(
|
|
(message) => message.stylelintType === 'invalidOption',
|
|
);
|
|
const invalidOptionWarnings = invalidOptionMessages.map((invalidOptionMessage) => {
|
|
return {
|
|
text: invalidOptionMessage.text,
|
|
};
|
|
});
|
|
|
|
const parseErrors = postcssResult.messages.filter(
|
|
(message) => message.stylelintType === 'parseError',
|
|
);
|
|
|
|
// Remove deprecation warnings, invalid options, and parse errors from the messages
|
|
postcssResult.messages = postcssResult.messages.filter(
|
|
(message) =>
|
|
message.stylelintType !== 'deprecation' &&
|
|
message.stylelintType !== 'invalidOption' &&
|
|
message.stylelintType !== 'parseError',
|
|
);
|
|
|
|
// This defines the stylelint result object that formatters receive
|
|
stylelintResult = {
|
|
source,
|
|
deprecations,
|
|
invalidOptionWarnings,
|
|
// @ts-expect-error -- TS2322: Type 'Message[]' is not assignable to type '(Warning & { stylelintType: string; })[]'.
|
|
parseErrors,
|
|
errored: postcssResult.stylelint.stylelintError,
|
|
warnings: postcssResult.messages.map((message) => {
|
|
return {
|
|
line: message.line,
|
|
column: message.column,
|
|
endLine: message.endLine,
|
|
endColumn: message.endColumn,
|
|
fix: message.fix,
|
|
rule: message.rule,
|
|
severity: message.severity,
|
|
text: message.text,
|
|
url: message.url,
|
|
};
|
|
}),
|
|
ignored: postcssResult.stylelint.ignored,
|
|
_postcssResult: postcssResult,
|
|
};
|
|
} else if (cssSyntaxError) {
|
|
if (cssSyntaxError.name !== 'CssSyntaxError') {
|
|
throw cssSyntaxError;
|
|
}
|
|
|
|
stylelintResult = {
|
|
source: cssSyntaxError.file || '<input css 1>',
|
|
deprecations: [],
|
|
invalidOptionWarnings: [],
|
|
parseErrors: [],
|
|
errored: true,
|
|
warnings: [
|
|
{
|
|
line: cssSyntaxError.line,
|
|
column: cssSyntaxError.column,
|
|
endLine: cssSyntaxError.endLine,
|
|
endColumn: cssSyntaxError.endColumn,
|
|
rule: cssSyntaxError.name,
|
|
severity: SEVERITY_ERROR,
|
|
text: `${cssSyntaxError.reason} (${cssSyntaxError.name})`,
|
|
},
|
|
],
|
|
};
|
|
} else {
|
|
throw new Error(
|
|
'createPartialStylelintResult must be called with either postcssResult or CssSyntaxError',
|
|
);
|
|
}
|
|
|
|
return stylelintResult;
|
|
}
|