UNPKG

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