From 9745d07b8e313b1f8c548bf46fdd3a84ff94574d Mon Sep 17 00:00:00 2001 From: Neil <4138956+nwparker@users.noreply.github.com> Date: Sun, 31 May 2026 23:00:58 -0700 Subject: [PATCH] chore: move react doctor config into package metadata Moves the React Doctor js-combine-iterations override from a root react-doctor.config.json file into package.json under reactDoctor, keeping the repo root cleaner without changing behavior. --- package.json | 5 +++++ react-doctor.config.json | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 react-doctor.config.json diff --git a/package.json b/package.json index b8954132f..e78620816 100644 --- a/package.json +++ b/package.json @@ -218,5 +218,10 @@ "@xterm/addon-ligatures@0.11.0-beta.220": "config/patches/@xterm__addon-ligatures@0.11.0-beta.220.patch", "@xterm/addon-webgl@0.20.0-beta.219": "config/patches/@xterm__addon-webgl@0.20.0-beta.219.patch" } + }, + "reactDoctor": { + "rules": { + "react-doctor/js-combine-iterations": "off" + } } } diff --git a/react-doctor.config.json b/react-doctor.config.json deleted file mode 100644 index 6ced54a13..000000000 --- a/react-doctor.config.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "rules": { - "react-doctor/js-combine-iterations": "off" - } -}