|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
778 bytes
|
| Line | |
|---|
| 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.