added documentation for regexp-disabling of line-length checks
This commit is contained in:
parent
62e2b65b9e
commit
8eb824037e
|
|
@ -89,6 +89,11 @@ This task is included in the checkstyle distribution.</p>
|
|||
<td valign="top">Specifies the maximum line length. Default value is defined <a href="engine.html#length">here</a>.</td>
|
||||
<td align="center" valign="top">No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">ignoreLineLengthPattern</td>
|
||||
<td valign="top">Specifies a regular expression for lines to ignore in maximum line length checks. Defaults to <span class="default">"^$"</span>.</td>
|
||||
<td align="center" valign="top">No</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">ignoreImportLen</td>
|
||||
<td valign="top">Specifies whether to ignore the maximum line length for <span class="code">import</span> statements. Defaults to <span class="default">"false"</span>.</td>
|
||||
|
|
|
|||
|
|
@ -82,6 +82,10 @@ This command line tool is included in the checkstyle distribution.</p>
|
|||
<td valign="top">checkstyle.maxlinelen</td>
|
||||
<td valign="top">Specifies the maximum line length. Default value is defined <a href="engine.html#length">here</a>.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">checkstyle.ignore.maxlinelen</td>
|
||||
<td valign="top">Specifies a regular expression for lines to ignore in maximum line length checks. Defaults to <span class="default">"^$"</span>.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">checkstyle.ignore.importlength</td>
|
||||
<td valign="top">Specifies whether to ignore the maximum line length for <span class="code">import</span> statements. Defaults to <span class="default">"false"</span>.</td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue