main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
778 bytes
|
Rev | Line | |
---|
[d565449] | 1 | /**
|
---|
| 2 | * @fileoverview Package exports for @eslint/eslintrc
|
---|
| 3 | * @author Nicholas C. Zakas
|
---|
| 4 | */
|
---|
| 5 | //------------------------------------------------------------------------------
|
---|
| 6 | // Requirements
|
---|
| 7 | //------------------------------------------------------------------------------
|
---|
| 8 |
|
---|
| 9 | import * as ConfigOps from "./shared/config-ops.js";
|
---|
| 10 | import ConfigValidator from "./shared/config-validator.js";
|
---|
| 11 | import * as naming from "./shared/naming.js";
|
---|
| 12 | import environments from "../conf/environments.js";
|
---|
| 13 |
|
---|
| 14 | //-----------------------------------------------------------------------------
|
---|
| 15 | // Exports
|
---|
| 16 | //-----------------------------------------------------------------------------
|
---|
| 17 |
|
---|
| 18 | const Legacy = {
|
---|
| 19 | environments,
|
---|
| 20 |
|
---|
| 21 | // shared
|
---|
| 22 | ConfigOps,
|
---|
| 23 | ConfigValidator,
|
---|
| 24 | naming
|
---|
| 25 | };
|
---|
| 26 |
|
---|
| 27 | export {
|
---|
| 28 | Legacy
|
---|
| 29 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.