mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-16 19:15:38 +00:00
44 lines
981 B
JavaScript
44 lines
981 B
JavaScript
import process from 'node:process';
|
|
|
|
import globby from 'globby';
|
|
|
|
import resolveConfig from './resolveConfig.mjs';
|
|
|
|
/** @import {Config as StylelintConfig} from 'stylelint' */
|
|
|
|
/**
|
|
* @param {import('stylelint').LinterOptions} options
|
|
* @returns {Promise<StylelintConfig | null>}
|
|
*/
|
|
export default async function printConfig({
|
|
cwd = process.cwd(),
|
|
code,
|
|
config,
|
|
configBasedir,
|
|
configFile,
|
|
globbyOptions,
|
|
files,
|
|
}) {
|
|
const isCodeNotFile = code !== undefined;
|
|
const filePath = files && files[0];
|
|
|
|
if (!files || files.length !== 1 || !filePath || isCodeNotFile) {
|
|
return Promise.reject(
|
|
new Error('The --print-config option must be used with exactly one file path.'),
|
|
);
|
|
}
|
|
|
|
if (globby.hasMagic(filePath)) {
|
|
return Promise.reject(new Error('The --print-config option does not support globs.'));
|
|
}
|
|
|
|
return (
|
|
(await resolveConfig(filePath, {
|
|
cwd: (globbyOptions && globbyOptions.cwd) || cwd,
|
|
config,
|
|
configBasedir,
|
|
configFile,
|
|
})) || null
|
|
);
|
|
}
|