From e6f8f849518d2907b92dd6ce3f8ff62e097a620d Mon Sep 17 00:00:00 2001 From: David Royer Date: Sat, 8 Jun 2019 01:13:58 -0400 Subject: [PATCH] imp: :ballot_box_with_check: eslint config switches to using `vue/recommended` which is the highest plugin option --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index b61c30a..4ed04c5 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,7 +3,7 @@ module.exports = { env: { node: true }, - extends: ["plugin:vue/recommended", "plugin:vue/essential", "@vue/prettier"], + extends: ["plugin:vue/recommended", "@vue/prettier"], rules: { "no-console": process.env.NODE_ENV === "production" ? "error" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"