From c7061569e4a00e6c17bd1bb5383b842961a26e61 Mon Sep 17 00:00:00 2001 From: Echo Date: Mon, 27 Apr 2026 20:24:03 +0000 Subject: [PATCH] Fix ESLint config - remove unconfigured React plugin rules --- frontend/eslint.config.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/frontend/eslint.config.js b/frontend/eslint.config.js index dbcb52c..b7d87b0 100644 --- a/frontend/eslint.config.js +++ b/frontend/eslint.config.js @@ -43,12 +43,8 @@ export default [ 'eqeqeq': ['error', 'always'], 'curly': ['error', 'multi-line'], - // React-specific - 'react/jsx-no-duplicate-props': 'error', - 'react/jsx-no-undef': 'error', - 'react/no-direct-mutation-state': 'error', - 'react/no-unused-state': 'warn', - }, + // Code quality + 'no-console': ['warn', { allow: ['warn', 'error'] }], }, { files: ['**/*.js'],