Skip to content

Commit 6244fb0

Browse files
committed
chore: lint for renovate PR
1 parent 91883e2 commit 6244fb0

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

web/components/Notifications/Indicator.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang="ts">
2-
import { computed, type Component } from 'vue';
2+
import { computed } from 'vue';
3+
import type { Component } from 'vue';
34
import { BellIcon, ExclamationTriangleIcon, ShieldExclamationIcon } from '@heroicons/vue/24/solid';
45
import { cn } from '@unraid/ui';
56

web/components/Notifications/Item.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang="ts">
2-
import { computed, reactive, type Component } from 'vue';
2+
import { computed, reactive } from 'vue';
3+
import type { Component } from 'vue';
34
import { computedAsync } from '@vueuse/core';
45
import { Markdown } from '@/helpers/markdown';
56
import {

web/helpers/apollo-cache/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { InMemoryCache, type InMemoryCacheConfig } from '@apollo/client/core';
1+
import { InMemoryCache } from '@apollo/client/core';
2+
import type { InMemoryCacheConfig } from '@apollo/client/core';
23

34
import type { NotificationOverview } from '~/composables/gql/graphql';
45

web/helpers/markdown.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import DOMPurify from 'isomorphic-dompurify';
2-
import { Marked, type MarkedExtension } from 'marked';
2+
import { Marked } from 'marked';
3+
import type { MarkedExtension } from 'marked';
34

45
const defaultMarkedExtension: MarkedExtension = {
56
hooks: {

0 commit comments

Comments
 (0)