This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
front/node_modules/eslint/conf/ecma-version.js
2024-09-18 13:34:19 -03:00

17 lines
306 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 = 2025;
module.exports = {
LATEST_ECMA_VERSION
};