From ba767108d5e2220ae7017a42093c8c840142f9b3 Mon Sep 17 00:00:00 2001 From: Will Sheldon <114631109+wssheldon@users.noreply.github.com> Date: Wed, 1 Nov 2023 15:32:06 -0700 Subject: [PATCH] Ignore v-stepper and other deprecated component linter errors (#3923) --- src/dispatch/static/dispatch/.eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dispatch/static/dispatch/.eslintrc.js b/src/dispatch/static/dispatch/.eslintrc.js index 9a5d381b48fc..1ba764c1332a 100644 --- a/src/dispatch/static/dispatch/.eslintrc.js +++ b/src/dispatch/static/dispatch/.eslintrc.js @@ -53,5 +53,6 @@ module.exports = { "vue/attribute-hyphenation": "off", "vue/require-default-prop": "off", "vue/require-explicit-emits": "off", + "vuetify/no-deprecated-components": "off", }, }