Parcourir la source

HADOOP-17813. Checkstyle - Allow line length: 100

Signed-off-by: Sean Busbey <busbey@apache.org>
Viraj Jasani il y a 3 ans
Parent
commit
98412ce2e1

+ 3 - 1
hadoop-build-tools/src/main/resources/checkstyle/checkstyle.xml

@@ -69,7 +69,9 @@
 
     <!-- Checks for line length violations.                                 -->
     <!-- See https://checkstyle.sourceforge.io/config_sizes.html#LineLength -->
-    <module name="LineLength"/>
+    <module name="LineLength">
+        <property name="max" value="100"/>
+    </module>
 
     <module name="TreeWalker">