From 5b03d3fcbcd48f88ff64228e0c64869acf4fbbc5 Mon Sep 17 00:00:00 2001 From: Alexander Brown Date: Sat, 29 Nov 2025 18:15:06 -0800 Subject: [PATCH] Minor/Lint: Fix two warnings (#7045) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Unnecessary import of a compiler macro and importing the default instead of the named export. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7045-Minor-Lint-Fix-two-warnings-2bb6d73d365081758369d14bafcd7aa0) by [Unito](https://www.unito.io) --- .oxlintrc.json | 3 ++- src/components/queue/QueueProgressOverlay.vue | 2 +- src/composables/maskeditor/gpu/brushShaders.ts | 2 +- src/composables/maskeditor/useBrushDrawing.ts | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.oxlintrc.json b/.oxlintrc.json index ee29da38b..66dd229c8 100644 --- a/.oxlintrc.json +++ b/.oxlintrc.json @@ -38,6 +38,7 @@ "typescript/no-redundant-type-constituents": "off", "typescript/restrict-template-expressions": "off", "typescript/unbound-method": "off", - "typescript/no-floating-promises": "error" + "typescript/no-floating-promises": "error", + "vue/no-import-compiler-macros": "error" } } \ No newline at end of file diff --git a/src/components/queue/QueueProgressOverlay.vue b/src/components/queue/QueueProgressOverlay.vue index 1b2ccb22e..cf4d88fba 100644 --- a/src/components/queue/QueueProgressOverlay.vue +++ b/src/components/queue/QueueProgressOverlay.vue @@ -60,7 +60,7 @@