From 91013f710e55d838fbd87f9ad1e804a2eb40718f Mon Sep 17 00:00:00 2001 From: ccbikai Date: Sun, 2 Jun 2024 20:12:42 +0800 Subject: [PATCH] style: disable vue/no-v-html rule in eslint.config --- eslint.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index 50d156f..585011a 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -12,6 +12,7 @@ export default withNuxt( '@typescript-eslint/ban-ts-comment': 'off', 'no-console': 'off', 'node/prefer-global/process': 'off', + 'vue/no-v-html': 'off', }, }, )