Skip to content
Closed
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion dev/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@
<property name="allowSamelineMultipleAnnotations" value="true"/>
</module>
<module name="MethodName">
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9_]*$"/>
<!-- Exclude Append and Complete were added in SPARK-15517 -->
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9_]*$|Append|Complete"/>
Copy link
Member

@dongjoon-hyun dongjoon-hyun Jun 2, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, @techaddict .
When you need to exclude something from the rules, please use dev/checkstyle-suppressions.xml instead of changing the rules.

<message key="name.invalidPattern"
value="Method name ''{0}'' must match pattern ''{1}''."/>
</module>
Expand Down