From 99b2a70789b27d433f9036b98572a4443d91e01f Mon Sep 17 00:00:00 2001 From: Jesse Alama Date: Sat, 26 Mar 2022 01:13:17 +0100 Subject: [PATCH] Use ECMAScript version 11 (#3448) We use BigInt syntax in a bunch of tests. This change registers that fact with linters that use `.jshintrc`. --- .jshintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index abc0141f5a9..93cbc059d44 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,4 +1,4 @@ { "predef": ["Intl"], - "esversion": 6 + "esversion": 11 }