checkstyle.xml 724 B

123456789101112131415
  1. <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
  2. "https://www.puppycrawl.com/dtds/configuration_1_3.dtd">
  3. <module name="Checker">
  4. <property name="charset" value="UTF-8"/>
  5. <property name="fileExtensions" value=""/>
  6. <module name="io.spring.nohttp.checkstyle.check.NoHttpCheck">
  7. <!-- Workaround for https://github.com/spring-io/nohttp/issues/55 -->
  8. <property name="allowlistFileName" value="${config_loc}/allowlist.lines" default=""/>
  9. </module>
  10. <module name="SuppressionFilter">
  11. <property name="file" value="${config_loc}/suppressions.xml" default=""/>
  12. <property name="optional" value="true"/>
  13. </module>
  14. <module name="SuppressWithPlainTextCommentFilter"/>
  15. </module>