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"> <script setup lang="ts">
import { useColorStore } from '~/store/color' import {useColorStore} from '~/store/color'
import { ColorsTheme } from '~~/types' import {ColorsTheme} from '~~/types'
const colors = Object.values(ColorsTheme) 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() { export function getProjects() {
return useAsyncData('content:projects', () => { return useAsyncData('content:projects', () => {

View File

@@ -1,6 +1,6 @@
<script lang="ts" setup> <script lang="ts" setup>
import { useTalentsStore } from '~/store/talents' import {useTalentsStore} from '~/store/talents'
import { providers } from '~~/types' import {providers} from '~~/types'
useHead({ useHead({
title: 'Discover new talents • Arthur Danjou', 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(() => { export default defineNuxtPlugin(() => {
inject() inject()

View File

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