diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 33f724c..2323727 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -5,6 +5,7 @@ module.exports = { root: true, globals: { //uni:true + appTitle: true }, extends: [ "plugin:vue/vue3-essential", @@ -16,4 +17,8 @@ module.exports = { parserOptions: { ecmaVersion: "latest", }, + rules: { + "vue/multi-word-component-names": "off", + "prettier/prettier": "off", + }, };