From d819424eb5b14df9172428d49b3cd003d85d7875 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Fri, 1 May 2026 11:23:44 -0700 Subject: [PATCH] buckconfig/watchmanconfig: ignore jj directory & cargo Neither of the configurations were actually ignoring these things; it's necessary to duplicate exclusions in both to stop the internal (fallback) file watcher from emitting junk into DICE, even though the excludes in it don't affect the internal watcher itself (it still sets inotify on the directories unconditionally). --- .buckconfig | 5 ++++- .watchmanconfig | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.buckconfig b/.buckconfig index de91633a32013..30bcec4961204 100644 --- a/.buckconfig +++ b/.buckconfig @@ -15,7 +15,10 @@ ignore = \ app_dep_graph_rules, \ examples, \ integrations/rust-project/tests, \ - tests + tests, \ + .jj, \ + .git, \ + target [rust] default_edition = 2024 diff --git a/.watchmanconfig b/.watchmanconfig index 3633b3459fa6b..edb79549d372f 100644 --- a/.watchmanconfig +++ b/.watchmanconfig @@ -1,3 +1,3 @@ { - "ignore_dirs": ["buck-out", ".git", ".sl"] + "ignore_dirs": ["buck-out", ".git", ".sl", ".jj", "target"] }