Skip to content

Commit

Permalink
Respect dist order over dot order
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Aug 31, 2024
1 parent 2e27573 commit c2bd894
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/CommandHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ public static function begin(
if ($projectConfigFile === null) {
$discoverableConfigNames = [
'.phpstan.neon',
'.phpstan.neon.dist',
'.phpstan.dist.neon',
'phpstan.neon',
'.phpstan.neon.dist',
'phpstan.neon.dist',
'.phpstan.dist.neon',
'phpstan.dist.neon',
];
foreach ($discoverableConfigNames as $discoverableConfigName) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
includes:
- ../../../../conf/bleedingEdge.neon

parameters:

0 comments on commit c2bd894

Please sign in to comment.