From ee70391c84b44fdab108db36d361871663502719 Mon Sep 17 00:00:00 2001 From: Valery Bugakov Date: Wed, 12 May 2021 09:14:56 +0300 Subject: [PATCH] feat: disable react/jsx-no-bind --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 55fcdcd9..0e22b639 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -187,7 +187,7 @@ module.exports = { 'react/jsx-curly-brace-presence': 'error', 'react/jsx-fragments': ['error', 'syntax'], 'react/jsx-key': 'error', - 'react/jsx-no-bind': ['error', { ignoreRefs: true, ignoreDOMComponents: true }], + 'react/jsx-no-bind': 'off', 'react/jsx-no-comment-textnodes': 'error', 'react/jsx-no-target-blank': 'error', 'react/no-access-state-in-setstate': 'error',