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 2022/09/28 04:38:45 UTC

[superset] 01/01: chore: ease the react-hooks/exhaustive-deps warnings... for now.

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

rusackas pushed a commit to branch remove-exhaustive-deps-rule
in repository https://gitbox.apache.org/repos/asf/superset.git

commit e66476cd1a64345ca7534fc502873d73c5860e48
Author: Evan Rusackas <ev...@preset.io>
AuthorDate: Tue Sep 27 22:38:33 2022 -0600

    chore: ease the react-hooks/exhaustive-deps warnings... for now.
---
 superset-frontend/.eslintrc.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/.eslintrc.js b/superset-frontend/.eslintrc.js
index 98a453d8cf..6740e75ed0 100644
--- a/superset-frontend/.eslintrc.js
+++ b/superset-frontend/.eslintrc.js
@@ -287,6 +287,7 @@ module.exports = {
     'react/sort-comp': 0, // TODO: re-enable in separate PR
     'react/static-property-placement': 0, // disabled temporarily
     'prettier/prettier': 'error',
+    'react-hooks/exhaustive-deps': 0,
   },
   ignorePatterns,
 };