stylelint
Version:
A mighty, modern CSS linter.
49 lines (38 loc) • 1.35 kB
JavaScript
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;
};
;