From ad0daefc6f2d913a0ffa2f0f0387d8ea340c513c Mon Sep 17 00:00:00 2001 From: VitoAlbano Date: Thu, 22 Aug 2024 22:31:59 +0100 Subject: [PATCH] [MIGRATION] - Switching off no empty functions rule --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index f1aea8ed41..83ef1e9131 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -103,6 +103,7 @@ module.exports = { } ], '@typescript-eslint/member-ordering': 'off', + '@typescript-eslint/no-empty-function': 'off', 'prefer-arrow/prefer-arrow-functions': 'off', 'prefer-promise-reject-errors': 'error', 'brace-style': 'off',