-
Notifications
You must be signed in to change notification settings - Fork 476
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Report invalid exclude paths in PHP config too
- Loading branch information
1 parent
44efcb2
commit 9718c14
Showing
6 changed files
with
73 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
return [ | ||
'includes' => [ | ||
__DIR__ . '/../../conf/bleedingEdge.neon', | ||
], | ||
'parameters' => [ | ||
'level' => '8', | ||
'paths' => [__DIR__ . '/src'], | ||
'ignoreErrors' => [ | ||
[ | ||
'message' => '#aaa#', | ||
'path' => 'src/test.php', // not absolute path - invalid in .php config | ||
], | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
return [ | ||
'includes' => [ | ||
__DIR__ . '/../../conf/bleedingEdge.neon', | ||
], | ||
'parameters' => [ | ||
'level' => '8', | ||
'paths' => [__DIR__ . '/src'], | ||
'excludePaths' => [ | ||
'analyse' => [ | ||
'src/test.php', // not absolute path - invalid in .php config | ||
], | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters