]> git.proxmox.com Git - pve-eslint.git/blob - eslint/lib/unsupported-api.js
c1daf54d6aebc191b196cdd49db7213f2ac17049
[pve-eslint.git] / eslint / lib / unsupported-api.js
1 /**
2 * @fileoverview APIs that are not officially supported by ESLint.
3 * These APIs may change or be removed at any time. Use at your
4 * own risk.
5 * @author Nicholas C. Zakas
6 */
7
8 "use strict";
9
10 //-----------------------------------------------------------------------------
11 // Requirements
12 //-----------------------------------------------------------------------------
13
14 const { FileEnumerator } = require("./cli-engine/file-enumerator");
15 const { FlatESLint } = require("./eslint/flat-eslint");
16 const FlatRuleTester = require("./rule-tester/flat-rule-tester");
17
18 //-----------------------------------------------------------------------------
19 // Exports
20 //-----------------------------------------------------------------------------
21
22 module.exports = {
23 builtinRules: require("./rules"),
24 FlatESLint,
25 FlatRuleTester,
26 FileEnumerator
27 };