You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/12/08 02:47:13 UTC

(superset) 01/03: disabling 'react-hooks/exhaustive-deps' - 275 down to 98.

This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch shut-up-eslint
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 186bddd7a8f6a4796a1d01cd757b0fad88a1d8b4
Author: Evan Rusackas <ev...@rusackas.com>
AuthorDate: Thu Dec 7 16:37:02 2023 -0700

    disabling 'react-hooks/exhaustive-deps' - 275 down to 98.
---
 superset-frontend/.eslintrc.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/.eslintrc.js b/superset-frontend/.eslintrc.js
index 6eebb0d2df..3b0c77a254 100644
--- a/superset-frontend/.eslintrc.js
+++ b/superset-frontend/.eslintrc.js
@@ -145,6 +145,7 @@ module.exports = {
         'react/require-default-props': 0,
         'react/sort-comp': 0, // TODO: re-enable in separate PR
         'react/static-property-placement': 0, // re-enable up for discussion
+        'react-hooks/exhaustive-deps': 0,
         'prettier/prettier': 'error',
         'file-progress/activate': 1,
       },