From 66827eb3dbca34b915a9c96cb917527ecccaeeb3 Mon Sep 17 00:00:00 2001 From: Mike Bronner Date: Wed, 1 Apr 2015 20:45:30 -0700 Subject: [PATCH] Update configuration and example --- Php-parallel-lint-plugin.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Php-parallel-lint-plugin.md b/Php-parallel-lint-plugin.md index dd1828c..b15c238 100644 --- a/Php-parallel-lint-plugin.md +++ b/Php-parallel-lint-plugin.md @@ -1,11 +1,14 @@ Similar to the [standard PHP Lint plugin](https://github.com/Block8/PHPCI/wiki/Lint-plugin), except that it uses the [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint) project to run. -###Example: +## Configuration +### Options +* **directory** [optional] - directory to inspect (default: build root) +* **ignore** [optional] - directory to ignore (default: inherits ignores specified in setup) +### Example ``` test: php_parallel_lint: - directory: - - "app" - - "public" -``` \ No newline at end of file + directory: "app" + ignore: "test" +```