From 6fd3a1b11dc6d167829235fe8c904c1853625b95 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Wed, 15 Aug 2018 21:33:40 +0100 Subject: [PATCH] Allow es6 --- .jshintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index fd6da821..a808c7a4 100644 --- a/.jshintrc +++ b/.jshintrc @@ -15,5 +15,5 @@ "shadow": true, // allow variable shadowing (re-use of names...) "sub": true, // don't warn that foo['bar'] should be written as foo.bar "proto": true // allow setting of __proto__ in node < v0.12 - /* "esversion": 6 // allow es6 */ + "esversion": 6 // allow es6 }