📄 is-correct-cwd.js
/home/palash/git/site/node_modules/@rushstack/eslint-patch/lib-commonjs/eslint-bulk-suppressions/cli/utils/is-correct-cwd.js
Language: js • Lines: 17
"use strict";
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
var __importDefault = (this && this.__importDefault) || function (mod) {
    return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.isCorrectCwd = isCorrectCwd;
const node_fs_1 = __importDefault(require("node:fs"));
function isCorrectCwd(cwd) {
    return (node_fs_1.default.existsSync(`${cwd}/eslint.config.js`) ||
        node_fs_1.default.existsSync(`${cwd}/eslint.config.cjs`) ||
        node_fs_1.default.existsSync(`${cwd}/eslint.config.mjs`) ||
        node_fs_1.default.existsSync(`${cwd}/.eslintrc.js`) ||
        node_fs_1.default.existsSync(`${cwd}/.eslintrc.cjs`));
}
//# sourceMappingURL=is-correct-cwd.js.map