From 5249814fc027b67171881e92a4e050ee26ad9abb Mon Sep 17 00:00:00 2001 From: David Majda Date: Thu, 8 Sep 2016 16:01:52 +0200 Subject: [PATCH] .eslintrc.json: Set parserOptions.ecmaVersion to 6 This means all code will be parsed as ES2015 by ESLint. See #442. --- .eslintrc.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 938dec6..f81c96e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,5 +1,8 @@ { "extends": "eslint:recommended", + "parserOptions": { + "ecmaVersion": 6 + }, "rules": { "no-control-regex": "off" }