mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 20:29:29 +08:00
17 lines
No EOL
719 B
Text
17 lines
No EOL
719 B
Text
"use strict";
|
|
/* eslint-disable @typescript-eslint/no-namespace */
|
|
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 |