From 0e9521523b2587eef54d3ab31933b4df627b4202 Mon Sep 17 00:00:00 2001 From: Jakub Onderka Date: Sat, 27 May 2017 12:19:55 +0200 Subject: [PATCH] Added --no-progress option to help (#99) --- README.md | 1 + parallel-lint.php | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index e09046bf..e162c1a8 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ For colored output install the suggested package `jakub-onderka/php-console-high - `-j ` Run jobs in parallel (default: 10). - `--colors` Force enable colors in console output. - `--no-colors` Disable colors in console output. +- `--no-progress` Disable progress in console output. - `--json` Output results as JSON string (require PHP 5.4). - `--blame` Try to show git blame for row with error. - `--git ` Path to Git executable to show blame message (default: 'git'). diff --git a/parallel-lint.php b/parallel-lint.php index aa89e287..372d7252 100644 --- a/parallel-lint.php +++ b/parallel-lint.php @@ -30,6 +30,7 @@ function showOptions() -j Run jobs in parallel (default: 10). --colors Enable colors in console output. (disables auto detection of color support) --no-colors Disable colors in console output. + --no-progress Disable progress in console output. --json Output results as JSON string (require PHP 5.4). --blame Try to show git blame for row with error. --git Path to Git executable to show blame message (default: 'git').