config-api.js 225 B

123456789101112
  1. /**
  2. * @fileoverview exports for config helpers
  3. * @author Nicholas C. Zakas
  4. */
  5. "use strict";
  6. const { defineConfig, globalIgnores } = require("@eslint/config-helpers");
  7. module.exports = {
  8. defineConfig,
  9. globalIgnores,
  10. };