astro-ghostcms/.pnpm-store/v3/files/90/55abf489b9cb72e8f70823ecab8...

18 lines
818 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
"use strict";
/* eslint-disable @typescript-eslint/no-namespace */
/* eslint-disable deprecation/deprecation -- "uses" deprecated API to define the deprecated API */
Object.defineProperty(exports, "__esModule", { value: true });
exports.CLIEngine = void 0;
const eslint_1 = require("eslint");
/**
* The underlying utility that runs the ESLint command line interface. This object will read the filesystem for
* configuration and file information but will not output any results. Instead, it allows you direct access to the
* important information so you can deal with the output yourself.
* @deprecated use the ESLint class instead
*/
const CLIEngine = eslint_1.CLIEngine
? class CLIEngine extends eslint_1.CLIEngine {
}
: undefined;
exports.CLIEngine = CLIEngine;
//# sourceMappingURL=CLIEngine.js.map