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

.inc Files #63

Closed TasneemLo closed 9 years ago

TasneemLo commented 9 years ago

How do I make parallel-lint parse .php and .inc files ? Currently it seems to be ignoring my .inc files

$ find . -name "*.php" | wc -l
25
$ find . -name "*.inc" | wc -l
16
$ ./vendor/bin/parallel-lint .
PHP 5.5.9 | 10 parallel jobs
.........................                                    25/25 (100 %)

Checked 25 files in 0.1 seconds
No syntax error found

As seen above, it only checks the 25 .php files I have.

grogy commented 9 years ago

Hello,

you can use option -e <extentensions>. For example -e php,php5,ini.

TasneemLo commented 9 years ago

Thanks !