From afd1abaa1d4a7296f34dbb8a352d396f2d5d1315 Mon Sep 17 00:00:00 2001 From: Mike Bronner Date: Wed, 1 Apr 2015 20:48:38 -0700 Subject: [PATCH] Updated Php parallel lint plugin (markdown) --- Php-parallel-lint-plugin.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Php-parallel-lint-plugin.md b/Php-parallel-lint-plugin.md index 9723f6e..f51a569 100644 --- a/Php-parallel-lint-plugin.md +++ b/Php-parallel-lint-plugin.md @@ -2,13 +2,15 @@ Similar to the [standard PHP Lint plugin](https://github.com/Block8/PHPCI/wiki/L ## Configuration ### Options -* **directory** [optional] - directory to inspect (default: build root) -* **ignore** [optional] - directory to ignore (default: inherits ignores specified in setup) +* **directory** [string, optional] - directory to inspect (default: build root) +* **ignore** [array, optional] - directory to ignore (default: inherits ignores specified in setup) ### Example ```yml test: php_parallel_lint: directory: "app" - ignore: "test" + ignore: + - "vendor" + - "test" ```