From c1a524e31b776798a2516831d258e8d5553e7768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Thu, 8 Feb 2024 22:25:31 +0100 Subject: [PATCH] feat: add `no-useless-concat` BREAKING CHANGE: New rule introduced --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index a93361a..cc8c04d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -132,6 +132,7 @@ } ], "no-useless-call": "error", + "no-useless-concat": "error", "no-useless-computed-key": "error", "no-useless-constructor": "error", "no-useless-escape": "error",