From 03b81a1eadeec7d65919e4a0483007b4d40207f6 Mon Sep 17 00:00:00 2001 From: iamsivin Date: Fri, 26 Jul 2024 08:52:26 +0530 Subject: [PATCH] fix: apply ESLint rule vue/no-template-target-blank --- .eslintrc.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index b7d5c2780..0174d4b1d 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -117,6 +117,13 @@ module.exports = { allowBinding: false, }, ], + 'vue/no-template-target-blank': [ + 'error', + { + allowReferrer: false, + enforceDynamicLinks: 'always', + }, + ], 'vue/no-required-prop-with-default': [ 'error', {