From 683ec7881d12de37c9f50b667f9156a73e2aff71 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 29 Aug 2021 18:19:18 -0700 Subject: [PATCH] Turn off react/jsx-no-bind --- web/.eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/.eslintrc.js b/web/.eslintrc.js index c5f1d70fe..df6946e3a 100644 --- a/web/.eslintrc.js +++ b/web/.eslintrc.js @@ -18,7 +18,8 @@ module.exports = { 'react/react-in-jsx-scope': 'off', 'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx', '.tsx'] }], 'react/jsx-props-no-spreading': 'off', - + 'react/jsx-no-bind': 'off', + 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': 'error', 'no-console': 'off',