From cfd8a32337ad76a2d0189aac7bea88faa540365c Mon Sep 17 00:00:00 2001 From: iamsivin Date: Fri, 26 Jul 2024 09:04:16 +0530 Subject: [PATCH] fix: apply ESLint rule vue/no-undef-components --- .eslintrc.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 0d9045376..b5b42225b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -131,6 +131,22 @@ module.exports = { }, ], 'vue/no-this-in-before-route-enter': 'error', + 'vue/no-undef-components': [ + 'error', + { + ignorePatterns: [ + '^woot-', + '^fluent-', + '^multiselect', + '^router-link', + '^router-view', + '^ninja-keys', + '^FormulateForm', + '^FormulateInput', + '^highlightjs', + ], + }, + ], 'vue/max-attributes-per-line': [ 'error', {