From da69ed56349d15975725becd05a93be53a890d1d Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 25 Oct 2022 13:54:52 -0400 Subject: [PATCH] switch to EcmaScript 2022 --- .eslintrc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 6010be67..9ef2c875 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,11 +1,11 @@ { "env": { "browser": true, - "es2021": true + "es2022": true }, "extends": "eslint:recommended", "parserOptions": { - "ecmaVersion": 2021, + "ecmaVersion": 2022, "sourceType": "module" }, "rules": {