From 9bb8e4fe2afce98792bcdf1c944ab303bdfbae3c Mon Sep 17 00:00:00 2001 From: Waleed Khan Date: Sat, 1 Jul 2023 17:40:24 -0700 Subject: [PATCH] feat(fsmonitor): add `.watchmanconfig` to repo This identifies the directory as Watchman-enabled. Additional config settings can go in this file. The contents of this file are based on https://github.com/thoughtpolice/buck2-nix/blob/fb8ed41881c481d4c876a8eb8c619cf25f3f077f/.watchmanconfig. --- .watchmanconfig | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .watchmanconfig diff --git a/.watchmanconfig b/.watchmanconfig new file mode 100644 index 000000000..c3c517c66 --- /dev/null +++ b/.watchmanconfig @@ -0,0 +1,6 @@ +{ + "enforce_root_files": true, + "root_files": [".watchmanconfig"], + "ignore_dirs": ["target"], + "ignore_vcs": [".git", ".sl", ".jj", ".hg"] +}