Skip to content

Commit c641f6d

Browse files
committed
Fix Linting
1 parent c04a425 commit c641f6d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

app/app.config.ts

-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ export default defineAppConfig({
2121
},
2222
},
2323
});
24-

app/components/articles/Grid.vue

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ defineProps<{
1414
</script>
1515

1616
<template>
17-
<div v-if="articles.length > 0" class="card-grid">
17+
<div
18+
v-if="articles.length > 0"
19+
class="card-grid"
20+
>
1821
<ArticlesCard
1922
v-for="article in articles"
2023
:key="article._path"

app/components/ui/NavTree.vue

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<script setup lang="ts">
22
import { TreeItem, TreeRoot } from 'radix-vue';
33
4+
// TODO: Use the correct type
5+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
46
defineProps<{ items: any[] }>();
57
</script>
68

0 commit comments

Comments
 (0)