用工小程序前端代码
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

6 months ago
  1. /**
  2. * @fileoverview Package exports for @eslint/eslintrc
  3. * @author Nicholas C. Zakas
  4. */
  5. //------------------------------------------------------------------------------
  6. // Requirements
  7. //------------------------------------------------------------------------------
  8. import * as ConfigOps from "./shared/config-ops.js";
  9. import ConfigValidator from "./shared/config-validator.js";
  10. import * as naming from "./shared/naming.js";
  11. import environments from "../conf/environments.js";
  12. //-----------------------------------------------------------------------------
  13. // Exports
  14. //-----------------------------------------------------------------------------
  15. const Legacy = {
  16. environments,
  17. // shared
  18. ConfigOps,
  19. ConfigValidator,
  20. naming
  21. };
  22. export {
  23. Legacy
  24. };