update config + template
Some checks failed
ci / ci (push) Failing after 35s

This commit is contained in:
Nicolas HOARAU 2026-01-30 01:37:17 +04:00
parent 50d4906024
commit 722c2e990b
3 changed files with 6 additions and 3 deletions

3
.prettierrc Normal file
View file

@ -0,0 +1,3 @@
{
"printWidth": 120
}

View file

@ -55,9 +55,7 @@ useSeoMeta({
<UFooter>
<template #left>
<p class="text-sm text-muted">
Built with Nuxt UI © {{ new Date().getFullYear() }}
</p>
<p class="text-sm text-muted">Built with Nuxt UI © {{ new Date().getFullYear() }} by myself for myself</p>
</template>
<template #right>

View file

@ -10,6 +10,8 @@ export default withNuxt([
"@stylistic/comma-dangle": ["error", "always-multiline"],
"@stylistic/operator-linebreak": ["error", "after"],
"vue/comma-dangle": ["error", "always-multiline"],
"@stylistic/max-len": ["error", { code: 120, ignoreTemplateLiterals: true, ignoreStrings: true }],
"vue/singleline-html-element-content-newline": "off",
},
},
]);