This commit is contained in:
taskylizard
2024-02-25 02:13:36 +00:00
parent 9065a0aeb7
commit 1fe7aa16df
8 changed files with 92 additions and 62 deletions

View File

@@ -41,7 +41,7 @@ const authors = computed(() =>
<template>
<div class="flex flex-wrap gap-4 pt-2">
<div v-for="(c, index) of authors" class="flex gap-2 items-center">
<img :src="`${c.github}.png`" class="w-8 h-8 rounded-full" />
<img :src="`${c.github}.png`" class="w-8 h-8 rounded-full" >
<a :href="c.github">{{ c.name }}</a>
<span v-if="index < authors.length - 1"></span>
</div>

View File

@@ -3,5 +3,8 @@ import tasky from '@taskylizard/eslint-config'
export default tasky({
vue: true,
browser: true
typescript: true,
browser: true,
unocss: true,
files: ['**/.vitepress/**']
})

View File

@@ -6,8 +6,8 @@
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"lint": "eslint --cache --fix .",
"og:dev": "x-satori -t ./.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev"
"lint": "eslint --cache -f pretty .",
"og": "x-satori -t ./.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev"
},
"dependencies": {
"@headlessui/vue": "^1.7.17",
@@ -24,6 +24,8 @@
"zod": "^3.22.4"
},
"devDependencies": {
"@taskylizard/eslint-config": "^1.1.1",
"eslint": "^8.56.0",
"@iconify-json/carbon": "^1.1.28",
"@iconify-json/twemoji": "^1.1.15",
"@types/fs-extra": "^11.0.4",

29
docs/tsconfig.json Normal file
View File

@@ -0,0 +1,29 @@
{
"compilerOptions": {
"verbatimModuleSyntax": true,
"baseUrl": ".",
"module": "esnext",
"target": "esnext",
"lib": [
"DOM",
"ESNext"
],
"strict": true,
"jsx": "preserve",
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"types": [
"vite/client",
"vitepress"
]
},
"include": [
".vitepress",
"eslint.config.js"
]
}