first commit
This commit is contained in:
54
node_modules/stylelint/lib/reportDisables.cjs
generated
vendored
Normal file
54
node_modules/stylelint/lib/reportDisables.cjs
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
// NOTICE: This file is generated by Rollup. To modify it,
|
||||
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
||||
'use strict';
|
||||
|
||||
const constants = require('./constants.cjs');
|
||||
const reportCommentProblem = require('./utils/reportCommentProblem.cjs');
|
||||
|
||||
/**
|
||||
* Returns a report describing which `results` (if any) contain disabled ranges
|
||||
* for rules that disallow disables via `reportDisables: true`.
|
||||
*
|
||||
* @param {import('stylelint').PostcssResult} postcssResult
|
||||
* @returns {void}
|
||||
*/
|
||||
function reportDisables(postcssResult) {
|
||||
const rangeData = postcssResult.stylelint.disabledRanges;
|
||||
const configRules = postcssResult.stylelint.config?.rules;
|
||||
|
||||
if (!configRules) return;
|
||||
|
||||
// If no rules actually disallow disables, don't bother looking for ranges
|
||||
// that correspond to disabled rules.
|
||||
if (!Object.values(configRules).some((rule) => reportDisablesForRule(rule))) {
|
||||
return;
|
||||
}
|
||||
|
||||
for (const [rule, ranges] of Object.entries(rangeData)) {
|
||||
for (const range of ranges) {
|
||||
if (!configRules[rule]) continue;
|
||||
|
||||
if (!reportDisablesForRule(configRules[rule])) continue;
|
||||
|
||||
reportCommentProblem({
|
||||
rule: 'reportDisables',
|
||||
message: `Rule "${rule}" may not be disabled`,
|
||||
severity: constants.SEVERITY_ERROR,
|
||||
node: range.node,
|
||||
postcssResult,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {import('stylelint').ConfigRuleSettings<any, object>} options
|
||||
* @returns {boolean}
|
||||
*/
|
||||
function reportDisablesForRule(options) {
|
||||
if (!options || !options[1]) return false;
|
||||
|
||||
return Boolean(options[1].reportDisables);
|
||||
}
|
||||
|
||||
module.exports = reportDisables;
|
||||
Reference in New Issue
Block a user