From 5cbcec18e0a97f24aaed6f32d9b5115947f23a91 Mon Sep 17 00:00:00 2001 From: Haroen Viaene Date: Mon, 17 Sep 2018 09:50:48 -0700 Subject: [PATCH] fix(vue): config compatible with eslint v5 --- vue.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vue.js b/vue.js index 697b6a95..779b7587 100644 --- a/vue.js +++ b/vue.js @@ -12,10 +12,9 @@ module.exports = { }, parserOptions: { parser: 'babel-eslint', // allows both flowtype and static class properties - ecmaVersion: 6, + ecmaVersion: 2018, sourceType: 'module', ecmaFeatures: { - experimentalObjectRestSpread: true, impliedStrict: true, jsx: true, },