You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
778 B
29 lines
778 B
/** |
|
* @fileoverview Package exports for @eslint/eslintrc |
|
* @author Nicholas C. Zakas |
|
*/ |
|
//------------------------------------------------------------------------------ |
|
// Requirements |
|
//------------------------------------------------------------------------------ |
|
|
|
import * as ConfigOps from "./shared/config-ops.js"; |
|
import ConfigValidator from "./shared/config-validator.js"; |
|
import * as naming from "./shared/naming.js"; |
|
import environments from "../conf/environments.js"; |
|
|
|
//----------------------------------------------------------------------------- |
|
// Exports |
|
//----------------------------------------------------------------------------- |
|
|
|
const Legacy = { |
|
environments, |
|
|
|
// shared |
|
ConfigOps, |
|
ConfigValidator, |
|
naming |
|
}; |
|
|
|
export { |
|
Legacy |
|
};
|
|
|