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, "private": true,
"license": "GPL-3.0", "license": "GPL-3.0",
"scripts": { "scripts": {
"dev": "nodemon",
"start": "node .", "start": "node .",
"serve": "nodemon . --ignore config" "serve": "nodemon . --ignore config"
}, },

View file

@ -17,6 +17,7 @@ module.exports = {
], ],
"vue/no-reserved-component-names": "off", "vue/no-reserved-component-names": "off",
"vue/no-mutating-props": "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"
} }
} }