From d139036eb4915a08686d9813ec25805401d9e820 Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Fri, 7 Jan 2022 13:46:58 -0600 Subject: [PATCH] Explicitly ignore vendor/bin to not need to bump the minimum version --- .hhconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.hhconfig b/.hhconfig index 2a69c8d..ccead0a 100644 --- a/.hhconfig +++ b/.hhconfig @@ -1,6 +1,6 @@ assume_php=false enable_experimental_tc_features = no_fallback_in_namespaces, unpacking_check_arity, disallow_refs_in_array, disallow_untyped_lambda_as_non_function_type -ignored_paths = [ "vendor/.+/tests/.+", "vendor/.+/bin/.+", "testdata/fixtures/.+\.tmp\..+\.hack", "testdata/fixtures/xhp-class/.+" ] +ignored_paths = [ "vendor/.+/tests/.+", "vendor/.+/bin/.+", "testdata/fixtures/.+\.tmp\..+\.hack", "testdata/fixtures/xhp-class/.+", "vendor/bin/.+" ] safe_array = true safe_vector_array = true disallow_destruct = true