stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
71 lines (52 loc) • 2.27 kB
JavaScript
import Result from 'postcss/lib/result';
import getStylelintRule from './getStylelintRule.mjs';
import { isPlainObject } from './validateTypes.mjs';
import { lexer } from 'css-tree';
import normalizeRuleSettings from '../normalizeRuleSettings.mjs';
/**
* @type {import('stylelint').Utils['checkAgainstRule']}
*/
export default async function checkAgainstRule(options, callback) {
if (!isPlainObject(options)) throw new Error('Expected an options object');
if (!callback) throw new Error('Expected a callback function');
const { ruleName, ruleSettings, root, result, context = { lexer } } = options;
if (!ruleName) throw new Error('Expected a "ruleName" option');
const rule = await getStylelintRule(ruleName, result?.stylelint?.config);
if (!rule) throw new Error(`Rule "${ruleName}" does not exist`);
if (!ruleSettings) throw new Error('Expected a "ruleSettings" option');
if (!root) throw new Error('Expected a "root" option');
const settings = normalizeRuleSettings(ruleSettings, rule);
if (!settings) {
return;
}
const tmpPostcssResult = new Result(
// NOTE: The first argument is unused, so passing `undefined` raises no problems.
// But this PostCSS's behavior may change in the future.
// @ts-expect-error -- TS2345: Argument of type 'undefined' is not assignable to parameter of type 'Processor'.
undefined,
undefined,
undefined,
);
/** @type {import('stylelint').StylelintPostcssResult} */
const stylelint = result?.stylelint ?? {
ruleSeverities: {},
customMessages: {},
customUrls: {},
ruleMetadata: {},
fixersData: {},
rangesOfComputedEditInfos: [],
disabledRanges: {},
};
// @ts-expect-error -- TS2339: Property 'stylelint' does not exist on type 'Result<undefined>'.
tmpPostcssResult.stylelint = stylelint;
const [primary, secondary] = settings;
const ruleFunc = rule(primary, secondary || {}, context);
await ruleFunc(
root,
// NOTE: This temporary PostCSS result doesn't have a property for Stylelint use.
// Problems may occur if some rules use the property.
// @ts-expect-error -- TS2345: Argument of type 'Result' is not assignable to parameter of type 'PostcssResult'.
tmpPostcssResult,
);
for (const warning of tmpPostcssResult.warnings()) callback(warning);
}