ESLint fix

This commit is contained in:
ElectricS01 2023-12-10 15:04:42 +11:00
parent 43ccd477d4
commit b034d6d541
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@
"private": true,
"license": "GPL-3.0",
"scripts": {
"dev": "nodemon",
"start": "node .",
"serve": "nodemon . --ignore config"
},

View File

@ -17,6 +17,7 @@ module.exports = {
],
"vue/no-reserved-component-names": "off",
"vue/no-mutating-props": "off",
"vue/multi-word-component-names": "off"
"vue/multi-word-component-names": "off",
"vue/no-v-text-v-html-on-component": "off"
}
}