JakubOnderka / PHP-Parallel-Lint

This tool check syntax of PHP files faster than serial check with fancier output.
Other
647 stars 61 forks source link

Extension filter does not work for combined extension #115

Closed ohartl closed 4 years ago

ohartl commented 6 years ago

When I want to check files with extension .php.dist (Distribution configs) I currently need to specify -e php,dist, which would for example also try to lint *.xml.dist files.

I'd like the -e option to be able to handle these combined extensions, so I can pass -e php,php.dist, filtering only php files and "distrubution" php files. (This also works in tools like phpcs, ...

I could help implementing it. PS: The title might not be that nice. Just update it if something else fits better.

jrfnl commented 5 years ago

PR #151 addresses this issue.

grogy commented 4 years ago

Hello @ohartl this PR was merged. Great work from @jrfnl

ohartl commented 4 years ago

Awesome! thanks a lot @jrfnl for your work