| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | 'use strict';const path = require('path');const createStylelint = require('./createStylelint');const getConfigForFile = require('./getConfigForFile');/** * Resolves the effective configuration for a given file. Resolves to `undefined` * if no config is found. * @param {string} filePath - The path to the file to get the config for. * @param {Pick< *   import('stylelint').LinterOptions, *   | 'cwd' *   | 'config' *   | 'configBasedir' *   | 'configFile' * >} options - The options to use when creating the Stylelint instance. * @returns {Promise<import('stylelint').Config | undefined>} */module.exports = async function resolveConfig(	filePath,	{ cwd = process.cwd(), config, configBasedir, configFile } = {},) {	if (!filePath) {		return undefined;	}	const stylelint = createStylelint({		config,		configFile,		configBasedir,		cwd,	});	const absoluteFilePath = !path.isAbsolute(filePath)		? path.join(cwd, filePath)		: path.normalize(filePath);	const configSearchPath = stylelint._options.configFile || absoluteFilePath;	const resolved = await getConfigForFile(stylelint, configSearchPath, absoluteFilePath);	if (!resolved) {		return undefined;	}	return resolved.config;};
 |