source: imaps-frontend/node_modules/@eslint/eslintrc/lib/index-universal.js@ d565449

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: 778 bytes
Line 
1/**
2 * @fileoverview Package exports for @eslint/eslintrc
3 * @author Nicholas C. Zakas
4 */
5//------------------------------------------------------------------------------
6// Requirements
7//------------------------------------------------------------------------------
8
9import * as ConfigOps from "./shared/config-ops.js";
10import ConfigValidator from "./shared/config-validator.js";
11import * as naming from "./shared/naming.js";
12import environments from "../conf/environments.js";
13
14//-----------------------------------------------------------------------------
15// Exports
16//-----------------------------------------------------------------------------
17
18const Legacy = {
19 environments,
20
21 // shared
22 ConfigOps,
23 ConfigValidator,
24 naming
25};
26
27export {
28 Legacy
29};
Note: See TracBrowser for help on using the repository browser.