How to set verbosity in configuration file? #617
-
Is there a way to set the verbosity in a configuration file? I tried I tried I tried I tried |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Not as far as I know. This is documented as such as well: <!--
You can hard-code command line values into your custom standard.
Note that this does not work for the command line values:
-v[v][v], -l, -d, --sniffs and --standard
The following tags are equivalent to the command line arguments:
--extensions=php,inc --report=summary --colors -sp
-->
<arg name="extensions" value="php,inc" />
<arg name="report" value="summary"/>
<arg name="colors"/>
<arg value="sp"/> Source: https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Annotated-Ruleset Out of curiousity: why would you want to always run in |
Beta Was this translation helpful? Give feedback.
Not as far as I know. This is documented as such as well:
Source: https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki/Annotated-Ruleset
Out of curiousity: why would you want to always run in
verbose
mode ? It's intended as a debugging feature, not for sta…