From 94ca60f62a756ba2676bf7083eba6b59038fa633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Guimmara?= Date: Sat, 14 Dec 2024 10:27:39 +0100 Subject: [PATCH] style(.eslintrc.json): disallow wrapper object types --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index f937731d4..58390a8b3 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -43,7 +43,8 @@ "rules": { "no-unused-vars": [ "error", { "args": "none" } ], "indent": [ "error", "tab" ], - "no-dupe-class-members": "off" + "no-dupe-class-members": "off", + "@typescript-eslint/no-wrapper-object-types": "error" } }, { "files": [ "*.jsx" ],