Checkstyle Results

The following document contains the results of Checkstyle 6.18 with google_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
2 0 5 0

Rules

Category Rule Violations Severity
imports CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • specialImportsRegExp: "com.google"
  • customImportOrderRules: "STATIC###SPECIAL_IMPORTS###THIRD_PARTY_PACKAGE###STANDARD_JAVA_PACKAGE"
3  Warning
javadoc JavadocMethod
  • scope: "public"
  • allowMissingThrowsTags: "true"
  • allowThrowsTagsForSubclasses: "true"
  • allowMissingReturnTag: "true"
  • allowMissingParamTags: "true"
  • minLineCount: "2"
  • allowedAnnotations: "Override, Test"
1  Warning
SummaryJavadoc
  • forbiddenSummaryFragments: "^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"
1  Warning

Details

com/ctrip/framework/apollo/assembly/ApolloApplication.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.ctrip.framework.apollo.adminservice.AdminServiceApplication' import. Should be before 'org.springframework.context.ConfigurableApplicationContext'. 13
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.ctrip.framework.apollo.configservice.ConfigServiceApplication' import. Should be before 'org.springframework.context.ConfigurableApplicationContext'. 14
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.ctrip.framework.apollo.portal.PortalApplication' import. Should be before 'org.springframework.context.ConfigurableApplicationContext'. 15
 Warning javadoc JavadocMethod Missing a Javadoc comment. 23
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 24