source: imaps-frontend/node_modules/@eslint/eslintrc/lib/config-array/index.js

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: 543 bytes
Line 
1/**
2 * @fileoverview `ConfigArray` class.
3 * @author Toru Nagashima <https://github.com/mysticatea>
4 */
5
6import { ConfigArray, getUsedExtractedConfigs } from "./config-array.js";
7import { ConfigDependency } from "./config-dependency.js";
8import { ExtractedConfig } from "./extracted-config.js";
9import { IgnorePattern } from "./ignore-pattern.js";
10import { OverrideTester } from "./override-tester.js";
11
12export {
13 ConfigArray,
14 ConfigDependency,
15 ExtractedConfig,
16 IgnorePattern,
17 OverrideTester,
18 getUsedExtractedConfigs
19};
Note: See TracBrowser for help on using the repository browser.