unsupported-api.js 704 B

1234567891011121314151617181920212223
  1. /**
  2. * @fileoverview APIs that are not officially supported by ESLint.
  3. * These APIs may change or be removed at any time. Use at your
  4. * own risk.
  5. * @author Nicholas C. Zakas
  6. */
  7. "use strict";
  8. //-----------------------------------------------------------------------------
  9. // Requirements
  10. //-----------------------------------------------------------------------------
  11. const { FileEnumerator } = require("./cli-engine/file-enumerator");
  12. //-----------------------------------------------------------------------------
  13. // Exports
  14. //-----------------------------------------------------------------------------
  15. module.exports = {
  16. builtinRules: require("./rules"),
  17. FileEnumerator
  18. };