From 8c3cee7a72a321e84b9461691e60a24188b588c5 Mon Sep 17 00:00:00 2001
From: Jonathan Tran <jon@allspice.io>
Date: Wed, 5 Apr 2023 16:59:40 -0400
Subject: [PATCH] Update eslints for Vue 3 (#23935)

I found that some lint warnings in my editor are conflicting, and I
believe the root cause is using lints designed for Vue 2 instead of Vue
3. We moved to Vue 3 in #20044.

I verified that the explicitly disabled rules in the changed file are
still part of the `vue/vue3-recommended` set.

See [Available rules -
eslint-plugin-vue](https://eslint.vuejs.org/rules/) for a full list of
lints.
---
 web_src/js/components/.eslintrc.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web_src/js/components/.eslintrc.yaml b/web_src/js/components/.eslintrc.yaml
index e19bd0663..d428b2495 100644
--- a/web_src/js/components/.eslintrc.yaml
+++ b/web_src/js/components/.eslintrc.yaml
@@ -3,7 +3,7 @@ plugins:
 
 extends:
   - ../../../.eslintrc.yaml
-  - plugin:vue/recommended
+  - plugin:vue/vue3-recommended
 
 env:
   browser: true