initialized web code

This commit is contained in:
2023-04-20 19:22:44 +02:00
parent c7e2ba072b
commit 20e9a392ca
12 changed files with 20048 additions and 0 deletions

17
web/.eslintrc Normal file
View File

@@ -0,0 +1,17 @@
{
"root": true,
"extends": ["@nuxt/eslint-config"],
"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"
}
}