php-censor/docs/en/plugins/php_parallel_lint.md

17 lines
530 B
Markdown
Raw Normal View History

2016-07-17 16:20:35 +02:00
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.
## Configuration
### Options
* **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:
- "vendor"
- "test"
```