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

Only the first --exclude parameter recognised, ignoring others #126

Closed ivangrynenko closed 5 years ago

ivangrynenko commented 5 years ago

When specifying multiple --exclude parameters, only the first one is getting recognised.

For example: vendor/bin/parallel-lint --exclude /app/tests/vendor --exclude /app/web/themes/custom/*/node_modules -e php,inc,module,theme,install,profile,test /app/web/themes/custom

The errors are getting reported from node_modules. If I swap them around, then the node_modules is getting excluded (as it should), but then the errors from /app/tests/vendor are reported (or vice versa)

ivangrynenko commented 5 years ago

was caused by phpcs config, closing