Skip to content

Commit 530cc74

Browse files
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 2412
1 parent a7d77cf commit 530cc74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Util/Help.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ private function getAllOptions()
573573

574574
'config-explain' => [
575575
'text' => 'Default values for a selection of options can be stored in a user-specific CodeSniffer.conf configuration file.'."\n"
576-
.'This applies to the following options: "default_standard", "report_format", "tab_width", "encoding", "severity", "error_severity", "warning_severity", "show_warnings", "report_width", "show_progress", "quiet", "colors", "cache", "parallel".',
576+
.'This applies to the following options: "default_standard", "report_format", "tab_width", "encoding", "severity", "error_severity", "warning_severity", "show_warnings", "report_width", "show_progress", "quiet", "colors", "cache", "parallel", "installed_paths", "php_version", "ignore_errors_on_exit", "ignore_warnings_on_exit".',
577577
],
578578
'config-show' => [
579579
'argument' => '--config-show',

0 commit comments

Comments
 (0)