Skip to content

Commit

Permalink
Exclude test env vendor dir
Browse files Browse the repository at this point in the history
  • Loading branch information
kraftbj committed Jan 27, 2025
1 parent c845cf9 commit 24624b7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .phan/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
$config = make_phan_config(
dirname( __DIR__ ),
array(
'stubs' => array(),
'exclude_file_regex' => array_merge(
'stubs' => array(),
'exclude_file_regex' => array_merge(
array(
// For the monorepo itself, we want to exclude all the projects. Those are processed individually instead.
'projects/',
Expand All @@ -34,6 +34,9 @@
// Also any pseudo-projects are processed separately.
array_values( $pseudoProjects )
),
'exclude_analysis_directory_list' => array(
'tools/php-test-env/vendor',
),
)
);

Expand Down

0 comments on commit 24624b7

Please sign in to comment.