Checkstyle Results

The following document contains the results of Checkstyle 8.10 with https://github.com/ci-and-cd/maven-build/raw/v0.3.2/src/main/checkstyle/google_checks_8.10.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
1 0 6 0

Files

File  I  W  E
top/infra/jackson2/HalJackson2Customizer.java 0 6 0

Rules

Category Rule Violations Severity
imports CustomImportOrder
  • separateLineBetweenGroups: "true"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
3  Warning
javadoc JavadocMethod
  • scope: "public"
  • allowMissingThrowsTags: "true"
  • allowThrowsTagsForSubclasses: "true"
  • allowMissingReturnTag: "true"
  • allowMissingParamTags: "true"
  • minLineCount: "2"
  • allowedAnnotations: "Override, Test"
2  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
1  Warning

Details

top/infra/jackson2/HalJackson2Customizer.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.lang.reflect.Method' import. Should be before 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'. 12
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.List' import. Should be before 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'. 13
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Optional' import. Should be before 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder'. 14
 Warning javadoc JavadocMethod Missing a Javadoc comment. 42
 Warning javadoc JavadocMethod Missing a Javadoc comment. 55
 Warning sizes LineLength Line is longer than 120 characters (found 132). 57