From 90c30f2bd271a831c742f33367460f10c343a32d Mon Sep 17 00:00:00 2001 From: Alexandr Garbuzov Date: Mon, 6 Nov 2023 16:18:43 +0200 Subject: [PATCH] infra: enable no-dupe-class-members eslint rule (#3456) --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 7801486..79b214b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -155,7 +155,7 @@ // "no-arrow-condition": "error", "no-class-assign": "error", "no-const-assign": "error", - // "no-dupe-class-members": "error", + "no-dupe-class-members": "error", "no-this-before-super": "error", // "no-var": "warn", "object-shorthand": [ "warn" ],