-
Notifications
You must be signed in to change notification settings - Fork 62
Support only checking the files you changed with the -h option #76
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,7 +139,7 @@ public static function parseArguments(array $arguments) | |
-m \ | ||
--first-parent \ | ||
--format=format: \ | ||
-- "${PATH_ARGS[@]}" | egrep -v '^$' || :"; | ||
-- "'*' . array('.php', '.phtml', '.php3', '.php4', '.php5')" | egrep -v '^$' || :"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. on second thought, you should probably refactor this to avoid use shell pipe formatting. what is you trying to filter out? can you give example? perhaps fixing --format or other arguments helps otherwise filter it in php side. more readable There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PHP Parallel Lint is supported on Windows too and this does not work on this OS. So I think, this must be reimplemented in PHP. |
||
|
||
foreach ($arguments as $argument) { | ||
if ($argument{0} !== '-') { | ||
|
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.
What do this line? It do concat string with array. I mean that a result of this expression have non-sence.