From 08133dcf3d544b381e5c374b0e749f5c4e1706cc Mon Sep 17 00:00:00 2001 From: lly-c232733 <104374843+lly-c232733@users.noreply.github.com> Date: Fri, 31 Jan 2025 15:41:41 -0500 Subject: [PATCH] Update eslint.js not sure why 'latest' is not working, but this fixes the annoying errors related to es5 being default --- libraries/codemirror/eslint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/codemirror/eslint.js b/libraries/codemirror/eslint.js index 8f56bf58c..9efda72ea 100644 --- a/libraries/codemirror/eslint.js +++ b/libraries/codemirror/eslint.js @@ -46,7 +46,7 @@ const errors = new eslint().verify(text, { root: true, parserOptions: { - ecmaVersion: "latest" + ecmaVersion: "2019" }, extends: ['eslint:recommended', 'airbnb-base'], env: {