Add default values

Mike Bronner 2015-04-01 21:00:10 -07:00
parent 3aba66b2ec
commit 12225dad71

@ -2,11 +2,11 @@ Runs PHP Mess Detector against your build. Records some key metrics, and also re
## Configuration
### Options
* **allowed_warnings** [int, optional] - The warning limit for a successful build.
* **suffixes** [array, optional] - An array of file extensions to check.
* **ignore** [array, optional] - An array of files/paths to ignore, defaults to the build_settings ignore list.
* **path** [string, optional] - Directory in which PHPMD should run.
* **rules** [array, optional] - Array of rulesets that PHPMD should use when checking your build or a string containing at least one slash, will be treated as path to PHPMD ruleset.
* **allowed_warnings** [int, optional] - The warning limit for a successful build (default: 0)
* **suffixes** [array, optional] - An array of file extensions to check (default: 'php')
* **ignore** [array, optional] - An array of files/paths to ignore (default: build_settings > ignore)
* **path** [string, optional] - Directory in which PHPMD should run (default: build root)
* **rules** [array, optional] - Array of rulesets that PHPMD should use when checking your build or a string containing at least one slash, will be treated as path to PHPMD ruleset. See http://phpmd.org/rules/index.html for complete details on the rules. (default: ['codesize', 'unusedcode', 'naming'])
### Example