lines.xml 722 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0"?>
  2. <!DOCTYPE module PUBLIC
  3. "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
  4. "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
  5. <!--
  6. Just the whitespace checks...
  7. -->
  8. <module name="Checker">
  9. <!-- Checks whether files end with a new line. -->
  10. <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile -->
  11. <!-- <module name="NewlineAtEndOfFile"/> -->
  12. <module name="TreeWalker">
  13. <!-- Checks for Size Violations. -->
  14. <!-- See http://checkstyle.sf.net/config_sizes.html -->
  15. <module name="LineLength">
  16. <property name="max" value="100"/>
  17. </module>
  18. </module>
  19. </module>