-
Notifications
You must be signed in to change notification settings - Fork 468
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow dot-prefixed config files #3354
Conversation
sreichel
commented
Aug 26, 2024
- closes Allow dot prefix config files phpstan#8567 (?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add some tests into AnalyseCommandTest (autoDiscoveryPathsProvider) that already tests the currently discovered files. Thanks.
Thank you. |
'.phpstan.neon', | ||
'.phpstan.neon.dist', | ||
'.phpstan.dist.neon', | ||
'phpstan.neon', | ||
'phpstan.neon.dist', | ||
'phpstan.dist.neon', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it wanted to load .phpstan.neon.dist
rather than phpstan.neon
or should it be
'.phpstan.neon',
'phpstan.neon',
'.phpstan.neon.dist',
'phpstan.neon.dist',
'.phpstan.dist.neon',
'phpstan.dist.neon',
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@VincentLanglet Please send an update.
Yes please! I always wanted to send this PR but I thought it would be refused 😆 |