Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions rules-dev.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -870,13 +870,18 @@ Long methods can be hard to read and understand.
<td>Ignore comments</td>
<td>boolean</td>
<td>false</td>
</tr><tr><td>ignoreEmpty</td>
<td>Ignore empty lines</td>
<td>boolean</td>
<td>false</td>
</tr></table>

### Example configuration
<pre>&lt;check enabled=&quot;true&quot; class=&quot;org.scalastyle.scalariform.MethodLengthChecker&quot; level=&quot;warning&quot;&gt;
&lt;parameters&gt;
&lt;parameter name=&quot;maxLength&quot;&gt;50&lt;/parameter&gt;
&lt;parameter name=&quot;ignoreComments&quot;&gt;false&lt;/parameter&gt;
&lt;parameter name=&quot;ignoreEmpty&quot;&gt;false&lt;/parameter&gt;
&lt;/parameters&gt;
&lt;/check&gt;</pre>
<a name="org_scalastyle_scalariform_MethodNamesChecker" />
Expand Down