aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Long <jeremy.long@gmail.com>2020-11-08 07:54:22 -0500
committerJeremy Long <jeremy.long@gmail.com>2020-11-08 07:54:22 -0500
commit9218ce72a703f4e01086f8ed1dd7e86b142d43b9 (patch)
tree9add9259a1b97d92d04cff93250d955fed74e6b0
parent18ab74037f17c6bbf070107ac5359a8584c5373a (diff)
downloadjava-encoder-9218ce72a703f4e01086f8ed1dd7e86b142d43b9.tar.gz
fix checkstyle config
-rw-r--r--src/main/config/checkstyle.xml12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/main/config/checkstyle.xml b/src/main/config/checkstyle.xml
index 6811c0f..aefb33c 100644
--- a/src/main/config/checkstyle.xml
+++ b/src/main/config/checkstyle.xml
@@ -25,7 +25,11 @@
<property name="fileExtensions" value="java"/>
<property name="id" value="header"/>
</module>
-
+ <!-- Checks for Size Violations. -->
+ <!-- See http://checkstyle.sf.net/config_sizes.html -->
+ <module name="LineLength">
+ <property name="max" value="130"/>
+ </module>
<module name="TreeWalker">
<module name="JavadocMethod"/>
@@ -75,12 +79,6 @@
<property name="option" value="bottom"/>
</module>
-
- <!-- Checks for Size Violations. -->
- <!-- See http://checkstyle.sf.net/config_sizes.html -->
- <module name="LineLength">
- <property name="max" value="130"/>
- </module>
<module name="MethodLength"/>
<module name="ParameterNumber"/>