From 723fa38271173c8c005e0e8a2520292b9dd7e738 Mon Sep 17 00:00:00 2001 From: Alys Date: Sun, 23 Aug 2020 16:05:45 +1000 Subject: [PATCH] prevent some lint warnings by turning off some rules we don't seem to care about require-prop-types has 167 violations require-default-prop has 93 violations --- website/client/.eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/client/.eslintrc.js b/website/client/.eslintrc.js index d73751cf49..8a36103dce 100644 --- a/website/client/.eslintrc.js +++ b/website/client/.eslintrc.js @@ -14,6 +14,8 @@ module.exports = { // TODO find a way to let eslint understand webpack aliases 'import/no-unresolved': 'off', 'vue/no-v-html': 'off', + 'vue/require-prop-types': 'off', + 'vue/require-default-prop': 'off', 'vue/html-self-closing': ['error', { html: { void: 'never',