diff --git a/eslint.config.mjs b/eslint.config.mjs index 67e3f24f4..b86eb9fe6 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -286,10 +286,12 @@ export default [ rules: { // i18n 'i18next/no-literal-string': [ - 'error', { + 'error', + { mode: 'jsx-text-only', 'should-validate-template': true, - }], + }, + ], // '@typescript-eslint/no-unused-expressions': 'off', '@typescript-eslint/no-unused-vars': 'off', @@ -299,8 +301,8 @@ export default [ '@typescript-eslint/ban-ts-comment': 'off', // React 'react/no-unknown-property': 'warn', - 'react-hooks/rules-of-hooks': 'off', - 'react-hooks/exhaustive-deps': 'off', + 'react-hooks/rules-of-hooks': 'error', + 'react-hooks/exhaustive-deps': 'warn', // General 'no-constant-binary-expression': 'off', 'import/no-cycle': 'off',