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" ```