From 4987916900f5d7249c63866dedb6acc7abbc636e Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 20 Oct 2024 13:51:31 -0500 Subject: [PATCH] Fix last lint issue --- src/util/vue.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/util/vue.tsx b/src/util/vue.tsx index f1fa2f5..1e2afb0 100644 --- a/src/util/vue.tsx +++ b/src/util/vue.tsx @@ -1,3 +1,7 @@ +/* eslint-disable vue/multi-word-component-names */ +// ^ I have no idea why that's necessary; the rule is disabled, and this file isn't a vue component? +// I'm _guessing_ it's related to us using DefineComponent, but I figured that eslint rule should +// only apply to SFCs import Col from "components/layout/Column.vue"; import Row from "components/layout/Row.vue"; import type { CoercableComponent, GenericComponent, JSXFunction } from "features/feature";