浏览代码

HADOOP-17813. Checkstyle - Allow line length: 100

Signed-off-by: Sean Busbey <busbey@apache.org>
Viraj Jasani 3 年之前
父节点
当前提交
98412ce2e1
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      hadoop-build-tools/src/main/resources/checkstyle/checkstyle.xml

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

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