From d1f0437daf3ab1cfdf8f5a498bbbd12c9f7dc2a3 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Tue, 6 May 2025 22:26:26 +0200 Subject: [PATCH] Update eslint.config.js --- src/Umbraco.Web.UI.Client/eslint.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/eslint.config.js b/src/Umbraco.Web.UI.Client/eslint.config.js index e0f4913ab9..ccdebe2b10 100644 --- a/src/Umbraco.Web.UI.Client/eslint.config.js +++ b/src/Umbraco.Web.UI.Client/eslint.config.js @@ -80,6 +80,14 @@ export default [ '@typescript-eslint/consistent-type-exports': 'error', '@typescript-eslint/consistent-type-imports': 'error', '@typescript-eslint/no-import-type-side-effects': 'warn', + '@typescript-eslint/no-deprecated': 'warn', + 'jsdoc/check-tag-names': [ + 'warn', + { + // allow all tags from https://github.com/runem/web-component-analyzer + definedTags: ['element', 'attr', 'fires', 'prop', 'slot', 'cssprop', 'csspart'], + }, + ], }, },