From 692d98cb55f74451a02943d3cafef47a19bf15da Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Mon, 17 May 2021 12:26:25 -0400 Subject: [PATCH] Make ESLint a bit more forgiving --- .eslintrc.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 94c9ba807..5ec892798 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -37,7 +37,9 @@ module.exports = { ], "vue/singleline-html-element-content-newline": "off", "vue/multiline-html-element-content-newline": "off", - "prettier/prettier": ["error", { semi: false }], + "prettier/prettier": ["warn", { semi: false }], + "import/no-named-as-default": "off", + "no-undef": "off", }, globals: { $nuxt: true,