[
https://issues.apache.org/jira/browse/NIFI-15650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18061481#comment-18061481
]
ASF subversion and git services commented on NIFI-15650:
--------------------------------------------------------
Commit 4d6eb989152df5abb4e5d8e20f50af8961a8c8f5 in nifi's branch
refs/heads/main from Pierre Villard
[ https://gitbox.apache.org/repos/asf?p=nifi.git;h=4d6eb98915 ]
NIFI-15650 Added Checkstyle Rules for Method Naming (#10940)
Signed-off-by: David Handermann <[email protected]>
> Checkstyle - Adding rules for naming conventions
> ------------------------------------------------
>
> Key: NIFI-15650
> URL: https://issues.apache.org/jira/browse/NIFI-15650
> Project: Apache NiFi
> Issue Type: Task
> Reporter: Pierre Villard
> Assignee: Pierre Villard
> Priority: Major
>
> {code:java}
> + <module name="MethodName">
> + <property name="id" value="MethodNameRegular"/>
> + <property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
> + </module>
> + <module name="MethodName">
> + <property name="id" value="MethodNameTest"/>
> + <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/>
> + </module>
> + <module name="LocalFinalVariableName"/>
> + <module name="LocalVariableName"/>
> + <module name="MemberName"/>
> + <module name="ParameterName"/>
> + <module name="StaticVariableName"/>
> + <module name="TypeName"/> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)