1/* 2 * STOP!!! DO NOT MODIFY. 3 * 4 * This file is part of the ongoing work to move the eslintrc-style config 5 * system into the @eslint/eslintrc package. This file needs to remain 6 * unchanged in order for this work to proceed. 7 * 8 * If you think you need to change this file, please contact @nzakas first. 9 * 10 * Thanks in advance for your cooperation. 11 */ 12 13/** 14 * @fileoverview `ConfigArray` class. 15 * @author Toru Nagashima <https://github.com/mysticatea> 16 */ 17"use strict"; 18 19const { ConfigArray, getUsedExtractedConfigs } = require("./config-array"); 20const { ConfigDependency } = require("./config-dependency"); 21const { ExtractedConfig } = require("./extracted-config"); 22const { IgnorePattern } = require("./ignore-pattern"); 23const { OverrideTester } = require("./override-tester"); 24 25module.exports = { 26 ConfigArray, 27 ConfigDependency, 28 ExtractedConfig, 29 IgnorePattern, 30 OverrideTester, 31 getUsedExtractedConfigs 32}; 33