From c3ddbc73b7695b6379bdf9d55712f5d113705d44 Mon Sep 17 00:00:00 2001 From: Divlo Date: Mon, 6 Feb 2023 23:37:55 +0100 Subject: [PATCH] feat: add `no-empty-static-block` Ref: https://eslint.org/docs/latest/rules/no-empty-static-block BREAKING CHANGE: New rule introduced --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 7f13e3d..86c922d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -34,6 +34,7 @@ "no-duplicate-imports": "error", "no-empty-character-class": "error", "no-empty-pattern": "error", + "no-empty-static-block": "error", "no-ex-assign": "error", "no-fallthrough": "error", "no-func-assign": "error",