From ddff49ea24f0875e109e75aaa12be92b0131ee2b Mon Sep 17 00:00:00 2001 From: PauI Ostrovckij Date: Fri, 12 Sep 2025 04:10:42 +0300 Subject: [PATCH] [fix] eslint --- eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.js b/eslint.config.js index 70942020..ddc843c4 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -55,6 +55,7 @@ module.exports = [ 'no-console': 'off', // Allow console in server code 'no-continue': 'off', // Allow continue statements 'no-plusplus': 'off', + 'react-hooks/exhaustive-deps': 'off', // Modern JavaScript practices 'prefer-const': 'error', // Enforce const for immutable bindings