mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-08 02:33:02 +00:00
17 lines
304 B
JavaScript
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,
|
|
};
|