Clarified (hopefully:-) how line counts are made on methods
This commit is contained in:
parent
db84febeb5
commit
bdd55605c0
|
|
@ -97,10 +97,10 @@
|
|||
<p>Checks for lines that are longer than a specified length. The default is <span class="default">"80"</span>. This can be turned off for <code>import</code> statements.</p>
|
||||
|
||||
<h3><a name="methodLength">Method Body Length</a></h3>
|
||||
<p>Checks for method bodies that are longer than a specified number of lines. The default is <span class="default">"150"</span>.
|
||||
<p>Checks for method bodies that are longer than a specified number of lines. The lines are counted from the opening brace <span class="code">'{'</span> to the closing brace <span class="code">'}'</span>. The default is <span class="default">"150"</span>.
|
||||
|
||||
<h3><a name="constructorLength">Constructor Body Length</a></h3>
|
||||
<p>Checks for constructor bodies that are longer than a specified number of lines. The default is <span class="default">"150"</span>.
|
||||
<p>Checks for constructor bodies that are longer than a specified number of lines. The lines are counted from the opening brace <span class="code">'{'</span> to the closing brace <span class="code">'}'</span>. The default is <span class="default">"150"</span>.
|
||||
|
||||
<h3><a name="fileLength">File Length</a></h3>
|
||||
<p>Checks for files that are longer than a specified number of lines. The default is <span class="default">"2000"</span>.
|
||||
|
|
|
|||
Loading…
Reference in New Issue