소스 검색

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.                                 -->
     <!-- See https://checkstyle.sourceforge.io/config_sizes.html#LineLength -->
-    <module name="LineLength"/>
+    <module name="LineLength">
+        <property name="max" value="100"/>
+    </module>
 
     <module name="TreeWalker">