From a06815a1fbc205a638d5aed4b0bda4f4b67fb588 Mon Sep 17 00:00:00 2001 From: Matan Borenkraout Date: Wed, 31 Mar 2021 16:39:05 +0300 Subject: [PATCH] chore(lint): disable unbound-method rule (#214) * chore(lint): disable unbound-method rule * change the order of the rules --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index ab4c94dd..5106ca9f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -11,6 +11,7 @@ module.exports = { rules: { 'no-console': 'off', 'import/no-unresolved': 'off', + 'jest/unbound-method': 'off', 'testing-library/no-dom-import': 'off', 'testing-library/prefer-screen-queries': 'off',