Disable the vue/no-v-text-v-html-on-component error in eslint

This commit is contained in:
Kevin MacMartin 2023-03-17 15:55:55 -04:00
parent 6d2943c071
commit 76ca0584ee

View file

@ -152,6 +152,7 @@
"vue/attributes-order": [ "warn" ],
"vue/html-quotes": [ "warn" ],
"vue/no-v-html": "off",
"vue/no-v-text-v-html-on-component": "off",
"vue/order-in-components": [ "warn", { "order": [ "el", "name", "parent", "functional", [ "delimiters", "comments" ], [ "mixins", "extends" ], [ "components", "directives", "filters" ], "inheritAttrs", "model", [ "props", "propsData" ], "emits", "data", "computed", "methods", "setup", "beforeCreate", "created", "beforeMount", "mounted", "beforeUpdate", "updated", "activated", "deactivated", "watch", "beforeUnmount", "beforeDestroy", "unmounted", "destroyed", [ "template", "render" ], "renderError" ] } ],
"vue/this-in-template": [ "warn" ]
}