From ac8da78e3e0bf8851f3b024074a465d63bc5d076 Mon Sep 17 00:00:00 2001 From: Bastien Dumont <bdumont@grandlyon.com> Date: Tue, 12 Sep 2023 11:23:51 +0200 Subject: [PATCH] disable empty functions --- .eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index bf7a39a5..ab0d29b2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -33,6 +33,8 @@ module.exports = { '@typescript-eslint/prefer-as-const': 'error', '@typescript-eslint/await-thenable': 'error', '@typescript-eslint/no-var-requires': 'off', + + '@typescript-eslint/no-empty-function': 'off', // fixes a build error }, }, ], -- GitLab