Watchman: Add buck-out dir to ignored directories
As pointed out in [1] and documented in [2] add .watchmanconfig file to ignore Buck build directory. This is useful to ignore a directory that contains only build products and where file change notifications are unwanted because of the sheer volume of files. Not to mention that during tests execution temporary directories are created and wiped out that may confuse watchman. [1] https://github.com/facebook/buck/issues/183 [2] https://facebook.github.io/watchman/docs/config.html Change-Id: Ib5a248f9b14006c64fb55d064d8ef5decf6b9061
This commit is contained in:
parent
352a9f719f
commit
7cfc17bca7
8
.watchmanconfig
Normal file
8
.watchmanconfig
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"ignore_dirs": [
|
||||
"buck-out"
|
||||
],
|
||||
"ignore_vcs": [
|
||||
".git"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user