UNPKG

704 BJavaScriptView Raw
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
14const { FileEnumerator } = require("./cli-engine/file-enumerator");
15
16//-----------------------------------------------------------------------------
17// Exports
18//-----------------------------------------------------------------------------
19
20module.exports = {
21 builtinRules: require("./rules"),
22 FileEnumerator
23};