ecma-version.js 306 B

12345678910111213141516
  1. /**
  2. * @fileoverview Configuration related to ECMAScript versions
  3. * @author Milos Djermanovic
  4. */
  5. "use strict";
  6. /**
  7. * The latest ECMAScript version supported by ESLint.
  8. * @type {number} year-based ECMAScript version
  9. */
  10. const LATEST_ECMA_VERSION = 2025;
  11. module.exports = {
  12. LATEST_ECMA_VERSION
  13. };