Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ignoreEmpty to the documentation #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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