From c9547ef662242766df56411059d8ae74a215421c Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 22 Jun 2023 15:13:56 +0200 Subject: [PATCH] lint fixes --- backend/.eslintrc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/.eslintrc.js b/backend/.eslintrc.js index c5171cf55..cc5440d82 100644 --- a/backend/.eslintrc.js +++ b/backend/.eslintrc.js @@ -203,7 +203,7 @@ module.exports = { files: ['*.spec.ts'], plugins: ['jest'], env: { - jest: true + jest: true, }, rules: { 'jest/no-disabled-tests': 'error', @@ -212,7 +212,7 @@ module.exports = { 'jest/prefer-to-have-length': 'error', 'jest/valid-expect': 'error', '@typescript-eslint/unbound-method': 'off', - //'jest/unbound-method': 'error', + // 'jest/unbound-method': 'error', }, }, ],