Files
2026-DEV-BUT3/node_modules/eslint/conf/ecma-version.js
T
2026-04-25 15:28:39 +02:00

17 lines
304 B
JavaScript

/**
* @fileoverview Configuration related to ECMAScript versions
* @author Milos Djermanovic
*/
"use strict";
/**
* The latest ECMAScript version supported by ESLint.
* @type {number} year-based ECMAScript version
*/
const LATEST_ECMA_VERSION = 2026;
module.exports = {
LATEST_ECMA_VERSION,
};