blob: 13c006146a1000abb23183ab47836b125db4f103 [file] [log] [blame]
'use strict';
const filterFilePaths = require('./utils/filterFilePaths');
const getFileIgnorer = require('./utils/getFileIgnorer');
const micromatch = require('micromatch');
const normalizePath = require('normalize-path');
const path = require('path');
/**
* To find out if a path is ignored, we need to load the config,
* which may have an ignoreFiles property. We then check the path
* against these.
* @param {import('stylelint').InternalApi} stylelint
* @param {string} [filePath]
* @return {Promise<boolean>}
*/
module.exports = async function isPathIgnored(stylelint, filePath) {
if (!filePath) {
return false;
}
const cwd = stylelint._options.cwd;
const ignorer = getFileIgnorer(stylelint._options);
const result = await stylelint.getConfigForFile(filePath, filePath);
if (!result) {
return true;
}
// Glob patterns for micromatch should be in POSIX-style
const ignoreFiles = /** @type {Array<string>} */ (result.config.ignoreFiles || []).map((s) =>
normalizePath(s),
);
const absoluteFilePath = path.isAbsolute(filePath) ? filePath : path.resolve(cwd, filePath);
if (micromatch([absoluteFilePath], ignoreFiles).length) {
return true;
}
// Check filePath with .stylelintignore file
if (filterFilePaths(ignorer, [path.relative(cwd, absoluteFilePath)]).length === 0) {
return true;
}
return false;
};