chore: reformat entire project with prettier, add prettierignore

This commit is contained in:
2025-07-16 13:10:28 -05:00
parent 3f2e0fb889
commit 75e5373fd2
31 changed files with 5583 additions and 2055 deletions
+8 -9
View File
@@ -1,24 +1,23 @@
<template>
<div class="image-skeleton" />
<div class="image-skeleton" />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
name: "ImageSkeleton",
name: 'ImageSkeleton',
});
</script>
<style lang="scss">
@use "@/scss/_variables.scss" as *;
@use '@/scss/_variables.scss' as *;
.image-skeleton {
width: 100%;
height: 100%;
background-color: $gray-400;
display: block;
border-radius: 3px;
width: 100%;
height: 100%;
background-color: $gray-400;
display: block;
border-radius: 3px;
}
</style>