stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
75 lines (59 loc) • 2.36 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 cosmiconfig = require('cosmiconfig');
const augmentConfig = require('./augmentConfig.cjs');
const configurationError = require('./utils/configurationError.cjs');
const IS_TEST = process.env.NODE_ENV === 'test';
const STOP_DIR = IS_TEST ? process.cwd() : undefined;
/** @import {Config as StylelintConfig, CosmiconfigResult as StylelintCosmiconfigResult, InternalApi as StylelintInternalApi} from 'stylelint' */
/**
* @param {StylelintInternalApi} stylelint
* @param {string} [searchPath]
* @param {string} [filePath]
* @returns {Promise<StylelintCosmiconfigResult>}
*/
async function getConfigForFile(
stylelint,
searchPath = stylelint._options.cwd,
filePath,
) {
const optionsConfig = stylelint._options.config;
const cwd = stylelint._options.cwd;
if (optionsConfig !== undefined) {
const cached = stylelint._specifiedConfigCache.get(optionsConfig);
// If config has overrides the resulting config might be different for some files.
// Cache results only if resulted config is the same for all linted files.
if (cached && !optionsConfig.overrides) {
return cached;
}
const augmentedResult = augmentConfig.augmentConfigFull(stylelint, filePath, {
config: optionsConfig,
// Add the extra path part so that we can get the directory without being
// confused
filepath: path.join(cwd, 'argument-config'),
});
stylelint._specifiedConfigCache.set(optionsConfig, augmentedResult);
return augmentedResult;
}
const configExplorer = cosmiconfig.cosmiconfig('stylelint', {
transform: (cosmiconfigResult) => augmentConfig.augmentConfigFull(stylelint, filePath, cosmiconfigResult),
stopDir: STOP_DIR,
searchStrategy: 'global', // for backward compatibility
});
let config = stylelint._options.configFile
? await configExplorer.load(stylelint._options.configFile)
: await configExplorer.search(searchPath);
if (!config) {
config = await configExplorer.search(cwd);
}
if (!config) {
return Promise.reject(
configurationError(`No configuration provided${searchPath ? ` for ${searchPath}` : ''}`),
);
}
return config;
}
module.exports = getConfigForFile;