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'], + }, + ], }, },