Files
memecoin-botV2/.pnpm-store/v10/files/e4/0659c7090bfc3cfd823295122a79bf35deb18052a8c86371a46c8a49b702b7568220feddf5f9f600529d4963eba2637e2585ec270c175443431e6e6ad0aff0

14 lines
530 B
Plaintext

"use strict";
/* eslint-disable @typescript-eslint/no-namespace, no-restricted-syntax */
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;