main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
981 bytes
|
Line | |
---|
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, shouldUseFlatConfig } = require("./eslint/flat-eslint");
|
---|
16 | const FlatRuleTester = require("./rule-tester/flat-rule-tester");
|
---|
17 | const { ESLint } = require("./eslint/eslint");
|
---|
18 |
|
---|
19 | //-----------------------------------------------------------------------------
|
---|
20 | // Exports
|
---|
21 | //-----------------------------------------------------------------------------
|
---|
22 |
|
---|
23 | module.exports = {
|
---|
24 | builtinRules: require("./rules"),
|
---|
25 | FlatESLint,
|
---|
26 | shouldUseFlatConfig,
|
---|
27 | FlatRuleTester,
|
---|
28 | FileEnumerator,
|
---|
29 | LegacyESLint: ESLint
|
---|
30 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.