mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 21:29:13 +08:00
14 lines
No EOL
542 B
Text
14 lines
No EOL
542 B
Text
"use strict";
|
|
/* eslint-disable @typescript-eslint/no-namespace */
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Linter = void 0;
|
|
const eslint_1 = require("eslint");
|
|
/**
|
|
* The Linter object does the actual evaluation of the JavaScript code. It doesn't do any filesystem operations, it
|
|
* simply parses and reports on the code. In particular, the Linter object does not process configuration objects
|
|
* or files.
|
|
*/
|
|
class Linter extends eslint_1.Linter {
|
|
}
|
|
exports.Linter = Linter;
|
|
//# sourceMappingURL=Linter.js.map |