From 3e32a9c31d0cb01566f09fca902bc994797ce06d Mon Sep 17 00:00:00 2001 From: Katharina Irrgang Date: Mon, 25 Sep 2017 14:12:07 +0200 Subject: [PATCH] jshintrc: use type Number for `esversion` (#9049) no issue - refs http://jshint.com/docs/options/ - the value is a Number, not a String - e.g. if you use template strings, jshint complains --- .jshintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index 4836d3e7c7..520812e6cd 100644 --- a/.jshintrc +++ b/.jshintrc @@ -23,5 +23,5 @@ "predef": [ "-Promise" ], - "esversion": "6" + "esversion": 6 }