added documentation for regexp-disabling of line-length checks

This commit is contained in:
Lars Kühne 2002-04-13 08:31:46 +00:00
parent 62e2b65b9e
commit 8eb824037e
2 changed files with 9 additions and 0 deletions

View File

@ -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">&quot;^$&quot;</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">&quot;false&quot;</span>.</td>

View File

@ -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">&quot;^$&quot;</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">&quot;false&quot;</span>.</td>