From ccebcbf08be3d90adf419ae6c8a65d8ead88c346 Mon Sep 17 00:00:00 2001 From: chris Date: Thu, 12 Sep 2024 13:52:22 +0200 Subject: [PATCH] fix(eslint): disable rule until plugin is fixed --- .eslintrc.cjs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index d32257e43..dd907af79 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -32,9 +32,7 @@ module.exports = { "plugin:jsx-a11y/recommended", ], settings: { - react: { - version: "detect", - }, + react: { version: "detect" }, formComponents: ["Form"], linkComponents: [ { name: "Link", linkAttribute: "to" }, @@ -43,6 +41,7 @@ module.exports = { }, rules: { "react/jsx-no-leaked-render": ["off", { validStrategies: ["ternary"] }], // enable later + "react/no-is-mounted": "off", // Re-enable once bug is fixed: https://github.com/jsx-eslint/eslint-plugin-react/issues/3819 }, },