From c4340efc6f48b72caedccab1b884ca05e7f9c82d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Sat, 10 May 2025 20:40:01 +0200 Subject: [PATCH] feat: add `@typescript-eslint/no-unnecessary-type-conversion` BREAKING CHANGE: New rule introduced --- eslint.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index 52a670d..de19af2 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -346,6 +346,8 @@ export default typescriptESLint.config( "no-useless-constructor": "off", "@typescript-eslint/no-useless-constructor": "error", + '@typescript-eslint/no-unnecessary-type-conversion': 'error', + "@typescript-eslint/no-unnecessary-template-expression": "error", "@typescript-eslint/adjacent-overload-signatures": "error",