From 896e50418239a81a8f3948601daedf0c10f40c71 Mon Sep 17 00:00:00 2001 From: Kyle Huang Junyuan Date: Fri, 30 Aug 2024 17:03:40 +0800 Subject: [PATCH] lint: set eslint parser option to ecmaVersion 2020 --- .eslintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc b/.eslintrc index fbb2662..bf3bbe4 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,5 +1,6 @@ { "extends": ["airbnb-base", "prettier"], + "parserOptions": { "ecmaVersion": 2020 }, "env": { "jest/globals": true },