stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
49 lines (40 loc) • 1.04 kB
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
;
const path = require('node:path');
const process = require('node:process');
const createStylelint = require('./createStylelint.cjs');
const getConfigForFile = require('./getConfigForFile.cjs');
/**
* @type {import('stylelint').PublicApi['resolveConfig']}
*/
async function resolveConfig(
filePath,
{
cwd = process.cwd(),
config = undefined,
configBasedir = undefined,
configFile = undefined,
} = {},
) {
if (!filePath) {
return undefined;
}
const stylelint = createStylelint({
config,
configFile,
configBasedir,
cwd,
});
const absoluteFilePath = !path.isAbsolute(filePath) ? path.join(cwd, filePath) : path.normalize(filePath);
const resolved = await getConfigForFile({
stylelint,
searchPath: absoluteFilePath,
filePath: absoluteFilePath,
});
if (!resolved) {
return undefined;
}
return resolved.config;
}
module.exports = resolveConfig;