From 8428555ec114d5a9a93a84b904e2322945e1b9b5 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Wed, 11 Jan 2023 15:50:03 +1300 Subject: [PATCH] ENH Loosen eslint rules --- .eslintrc.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index e71c640..f4eafb3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -70,6 +70,9 @@ const todo = { 'import/order': [ 'off' ], + 'import/no-cycle': [ + 'off' + ], 'function-paren-newline': [ 'off' ], @@ -123,7 +126,10 @@ const todo = { ], 'react/forbid-foreign-prop-types': [ 'off' - ] + ], + 'react/no-deprecated': [ + 'off' + ], }; module.exports = {