feat: Added @nuxthq/ui module

This commit is contained in:
2023-06-04 10:26:36 +02:00
parent 795c221453
commit b25699b50b
4 changed files with 4427 additions and 158 deletions

View File

@@ -1,5 +1,17 @@
{
"extends": [
"@nuxt/eslint-config"
]
"root": true,
"extends": ["eslint:recommended", "@nuxtjs/eslint-config-typescript", "plugin:tailwindcss/recommended"],
"rules": {
"vue/max-attributes-per-line": ["error", {
"singleline": {
"max": 4
},
"multiline": {
"max": 2
}
}],
"vue/multi-word-component-names": "off",
"vue/singleline-html-element-content-newline": "off",
"no-undef": "off"
}
}