mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-16 19:15:38 +00:00
74 lines
1.9 KiB
JavaScript
74 lines
1.9 KiB
JavaScript
// 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 validateTypes = require('./utils/validateTypes.cjs');
|
|
const constants = require('./constants.cjs');
|
|
const validateOptions = require('./utils/validateOptions.cjs');
|
|
|
|
/** @import {DisablePropertyName, DisableOptions, PostcssResult} from 'stylelint' */
|
|
|
|
/**
|
|
* Validates that the stylelint config for `result` has a valid disable field
|
|
* named `field`, and returns the result in normalized form.
|
|
*
|
|
* Returns `[]` if no disables should be reported, and automatically reports
|
|
* an invalid configuration.
|
|
*
|
|
* @param {PostcssResult} result
|
|
* @param {DisablePropertyName} field
|
|
* @returns {[boolean, Required<DisableOptions>] | []}
|
|
*/
|
|
function validateDisableSettings(result, field) {
|
|
const stylelintResult = result.stylelint;
|
|
|
|
// Files with linting errors may not have configs associated with them.
|
|
if (!stylelintResult.config) return [];
|
|
|
|
const rawSettings = stylelintResult.config[field];
|
|
|
|
/** @type {boolean} */
|
|
let enabled;
|
|
/** @type {DisableOptions} */
|
|
let options;
|
|
|
|
if (Array.isArray(rawSettings)) {
|
|
enabled = rawSettings[0];
|
|
options = rawSettings[1] || {};
|
|
} else {
|
|
enabled = rawSettings || false;
|
|
options = {};
|
|
}
|
|
|
|
const validOptions = validateOptions(
|
|
result,
|
|
field,
|
|
{
|
|
actual: enabled,
|
|
possible: [true, false],
|
|
},
|
|
{
|
|
actual: options,
|
|
possible: {
|
|
except: [validateTypes.isString, validateTypes.isRegExp],
|
|
},
|
|
},
|
|
);
|
|
|
|
if (!validOptions) return [];
|
|
|
|
// If the check is disabled with no exceptions, there's no reason to run
|
|
// it at all.
|
|
if (!enabled && !options.except) return [];
|
|
|
|
return [
|
|
enabled,
|
|
{
|
|
except: options.except || [],
|
|
severity: options.severity || stylelintResult.config.defaultSeverity || constants.DEFAULT_SEVERITY,
|
|
},
|
|
];
|
|
}
|
|
|
|
module.exports = validateDisableSettings;
|