feat: lint code

This commit is contained in:
guoqi.sun 2024-02-13 10:09:11 +08:00
parent f959ac8e87
commit 1591b80501
2 changed files with 6 additions and 6 deletions

View File

@ -124,7 +124,7 @@ onMounted(() => {
<div mb-10 flex flex-wrap justify-between> <div mb-10 flex flex-wrap justify-between>
<div v-for="(item, index) in data.myProjects" :key="index" mx-10 my-4 class="basis-1/6"> <div v-for="(item, index) in data.myProjects" :key="index" mx-10 my-4 class="basis-1/6">
<a :href="item.link"> <a :href="item.link">
<div p-2 opacity-10 bg-white rounded-lg shadow-md flex-c backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100> <div p-2 opacity-10 bg-white rounded-lg shadow-md flex-col backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100>
<div class="text-white" text-bold opacity-75> <div class="text-white" text-bold opacity-75>
{{ item.name }} {{ item.name }}
</div> </div>
@ -140,7 +140,7 @@ onMounted(() => {
</div> </div>
<div flex flex-wrap justify-between> <div flex flex-wrap justify-between>
<div mx-10 my-4 class="basis-1/6"> <div mx-10 my-4 class="basis-1/6">
<div p-2 opacity-10 rounded-lg shadow-md flex-c justify-between items-center backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100> <div p-2 opacity-10 rounded-lg shadow-md flex-col justify-between items-center backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100>
<a href="https://github.com/sun0225SUN"> <a href="https://github.com/sun0225SUN">
<div mb-1 text-white f-c-c> <div mb-1 text-white f-c-c>
<i i-ant-design-github-outlined /> <i i-ant-design-github-outlined />
@ -152,7 +152,7 @@ onMounted(() => {
</div> </div>
</div> </div>
<div mx-10 my-4 class="basis-1/6"> <div mx-10 my-4 class="basis-1/6">
<div p-2 opacity-10 rounded-lg shadow-md flex-c justify-between items-center backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100> <div p-2 opacity-10 rounded-lg shadow-md flex-col justify-between items-center backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100>
<a href="https://twitter.com/sun0225SUN"> <a href="https://twitter.com/sun0225SUN">
<div mb-1 text-white f-c-c> <div mb-1 text-white f-c-c>
<i i-ant-design-x-outlined /> <i i-ant-design-x-outlined />
@ -164,7 +164,7 @@ onMounted(() => {
</div> </div>
</div> </div>
<div mx-10 my-4 class="basis-1/6"> <div mx-10 my-4 class="basis-1/6">
<div p-2 opacity-10 rounded-lg shadow-md flex-c justify-between items-center backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100> <div p-2 opacity-10 rounded-lg shadow-md flex-col justify-between items-center backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100>
<a href="https://youtube.com/@sun0225SUN"> <a href="https://youtube.com/@sun0225SUN">
<div mb-1 text-white f-c-c> <div mb-1 text-white f-c-c>
<i i-ant-design-youtube-outlined /> <i i-ant-design-youtube-outlined />
@ -176,7 +176,7 @@ onMounted(() => {
</div> </div>
</div> </div>
<div mx-10 my-4 class="basis-1/6"> <div mx-10 my-4 class="basis-1/6">
<div p-2 opacity-10 rounded-lg shadow-md flex-c justify-between items-center backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100> <div p-2 opacity-10 rounded-lg shadow-md flex-col justify-between items-center backdrop-blur-3xl backdrop-opacity-60 hover:opacity-20 hover:skew-y-1 hover:backdrop-opacity-100>
<a href="https://space.bilibili.com/448488855/"> <a href="https://space.bilibili.com/448488855/">
<div mb-1 text-white f-c-c> <div mb-1 text-white f-c-c>
<i i-ant-design-bilibili-outlined /> <i i-ant-design-bilibili-outlined />

View File

@ -22,7 +22,7 @@ export default defineConfig({
['wh-full', 'w-full h-full'], ['wh-full', 'w-full h-full'],
['f-b-c', 'flex justify-between items-center'], ['f-b-c', 'flex justify-between items-center'],
['f-c-c', 'flex justify-center items-center'], ['f-c-c', 'flex justify-center items-center'],
['flex-c', 'flex flex-col'], ['flex-col', 'flex flex-col'],
['icon-btn', 'text-5 inline-block cursor-pointer select-none opacity-75 transition duration-200 ease-in-out hover:opacity-100 hover:text-primary !outline-none'], ['icon-btn', 'text-5 inline-block cursor-pointer select-none opacity-75 transition duration-200 ease-in-out hover:opacity-100 hover:text-primary !outline-none'],
], ],
}) })