Lint code

Signed-off-by: Arthur DANJOU <arthurdanjou@outlook.fr>
This commit is contained in:
2024-04-20 01:33:40 +02:00
parent a29f6bc0f6
commit 5ca0137c4e
67 changed files with 2671 additions and 2671 deletions

View File

@@ -1,6 +1,6 @@
<script setup lang="ts">
import { useColorStore } from '~/store/color'
import { ColorsTheme } from '~~/types'
import {useColorStore} from '~/store/color'
import {ColorsTheme} from '~~/types'
const colors = Object.values(ColorsTheme)

View File

@@ -1,4 +1,4 @@
import type { Education, Post, Project, Skill, WorkExperience } from '~~/types'
import type {Education, Post, Project, Skill, WorkExperience} from '~~/types'
export function getProjects() {
return useAsyncData('content:projects', () => {

View File

@@ -1,6 +1,6 @@
<script lang="ts" setup>
import { useTalentsStore } from '~/store/talents'
import { providers } from '~~/types'
import {useTalentsStore} from '~/store/talents'
import {providers} from '~~/types'
useHead({
title: 'Discover new talents • Arthur Danjou',

View File

@@ -1,4 +1,4 @@
import { inject } from '@vercel/analytics'
import {inject} from '@vercel/analytics'
export default defineNuxtPlugin(() => {
inject()

View File

@@ -1,4 +1,4 @@
import { z } from 'zod'
import {z} from 'zod'
const PostSchema = z.object({ slug: z.string() }).parse