This commit is contained in:
2023-06-13 11:39:18 +02:00
commit 872c089e4b
27 changed files with 10246 additions and 0 deletions

10
.eslintrc Normal file
View File

@@ -0,0 +1,10 @@
{
"extends": "@antfu",
"ignorePatterns": ["!pages/public"],
"rules": {
"vue/no-restricted-syntax":["error", {
"selector": "VElement[name='a']",
"message": "Use NuxtLink instead."
}]
}
}