From 0b194bb0cf326104c249c953194997a1f9a80dbf Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Mon, 17 Oct 2022 16:12:16 +0200 Subject: [PATCH] fix: update eslint env to 2022 --- .eslintrc.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 7ac572699..e0d091949 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -5,7 +5,7 @@ module.exports = { 'root': true, 'env': { 'browser': true, - 'es2021': true, + 'es2022': true, 'node': true, 'vue/setup-compiler-macros': true, },