UNPKG

stylelint

Version:

A mighty CSS linter that helps you avoid errors and enforce conventions.

31 lines (25 loc) 810 B
import getConfigForFile from '../getConfigForFile.mjs'; /** @import {InternalApi, LinterOptions, Config} from 'stylelint' */ /** * Get a value of the specified lint option or configuration. * * @template T * @param {Object} options * @param {InternalApi} options.stylelint * @param {keyof LinterOptions & keyof Config} options.name * @param {T} [options.default] * @returns {Promise<T>} */ export default async function resolveOptionValue({ stylelint, name, default: defaultValue = undefined, }) { const options = stylelint._options; const value = options[name] ?? options.config?.[name]; if (value != null) { return /** @type {T} */ (value); } const configForFile = await getConfigForFile({ stylelint, failIfNoConfig: false }); return configForFile?.config?.[name] ?? defaultValue; }