UNPKG

eslint-plugin-sonarjs

Version:
46 lines (45 loc) 2.02 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.patternInParentsCache = void 0; /* * SonarQube JavaScript Plugin * Copyright (C) 2011-2025 SonarSource Sàrl * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the Sonar Source-Available License for more details. * * You should have received a copy of the Sonar Source-Available License * along with this program; if not, see https://sonarsource.com/license/ssal/ */ const find_minimatch_js_1 = require("./find-minimatch.js"); const files_js_1 = require("../files.js"); const cache_js_1 = require("../cache.js"); const node_fs_1 = __importDefault(require("node:fs")); const minimatch_1 = require("minimatch"); exports.patternInParentsCache = new cache_js_1.ComputedCache((pattern, filesystem = node_fs_1.default) => { const matcher = new minimatch_1.Minimatch(pattern); const readDir = find_minimatch_js_1.MinimatchCache.get(matcher, filesystem); return new cache_js_1.ComputedCache((topDir) => { const newCache = new cache_js_1.ComputedCache((from) => { if (from === '.') { // handle path.dirname returning "." in windows return []; } if (!(0, files_js_1.isRoot)(from) && from !== topDir) { const parent = (0, files_js_1.dirnamePath)(from); return [...readDir.get(from), ...newCache.get(parent)]; } return [...readDir.get(from)]; }); return newCache; }); });