checkstyle.xml 924 B

1234567891011121314151617181920
  1. <?xml version="1.0"?>
  2. <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
  3. "https://checkstyle.org/dtds/configuration_1_3.dtd">
  4. <module name="Checker">
  5. <!-- Configure checker to use UTF-8 encoding -->
  6. <property name="charset" value="UTF-8"/>
  7. <!-- Configure checker to run on files with these extensions -->
  8. <property name="fileExtensions" value=""/>
  9. <!-- For detailed checkstyle configuration, see https://github.com/spring-io/nohttp/tree/master/nohttp-checkstyle -->
  10. <module name="io.spring.nohttp.checkstyle.check.NoHttpCheck">
  11. <property name="allowlist" value="^\Qhttp://maven.apache.org/POM/4.0.0&#10;^\Qhttp://www.w3.org/2001/XMLSchema-instance"/>
  12. </module>
  13. <!-- Allow suppression with comments
  14. // CHECKSTYLE:OFF
  15. ... ignored content ...
  16. // CHECKSTYLE:ON
  17. -->
  18. <module name="SuppressWithPlainTextCommentFilter"/>
  19. </module>