From a1eb6375382c9bc047504356c007f9a1e334f28f Mon Sep 17 00:00:00 2001 From: Gustavo Date: Fri, 24 Oct 2025 21:35:11 +1100 Subject: [PATCH] change eslint target version bc rhino sucks --- eslint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index ac4e75807..d3d620ab2 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -13,7 +13,7 @@ export default defineConfig([ }, extends: ["js/recommended"], - languageOptions: { globals: globals.node, ecmaVersion: 2015 }, + languageOptions: { globals: globals.node, ecmaVersion: 2020 }, rules: { "no-undef": "off", "no-unused-vars": "off",