Commit 530cc74
committed
Help: update list of config options
Follow up on 447
I noticed while working on something else that some typical config options were missing from the list in the help text.
The difference between the previously listed ones and the additional options I'm now adding to the list, is that the original set of options are options which the `Config` class manages and for which it has a default value, while the additional options I'm now adding are used at runtime in various places by PHPCS, but do not have default value management in the `Config` class.
Whether default value handling of these options should be added to the `Config` class is up for debate, however, making it more discoverable that these options _exist_ and can be used, seems like an easy win for usability.
* `installed_paths` is probably the best known one and is used to register external standards with PHPCS. It is used in the `Util\Standards` class.
* `php_version` is a way to tell PHPCS what PHP version they code is supposed to run on. It is used by select sniffs.
* `ignore_errors_on_exit` and `ignore_warnings_on_exit` influence the exit code used by PHPCS and is used in the `Runner` class.
These additional options are all mentioned and described in more detail in the wiki: https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Configuration-Options
Fixes squizlabs/PHP_CodeSniffer 24121 parent a7d77cf commit 530cc74
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
573 | 573 | | |
574 | 574 | | |
575 | 575 | | |
576 | | - | |
| 576 | + | |
577 | 577 | | |
578 | 578 | | |
579 | 579 | | |
| |||
0 commit comments