This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch ecomify-OFBIZ-11468_Convert_ShipmentReceiptServices-squashed in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
commit 7603d5ce8a2bcc1353a15debfe214f8c04f60752 Author: Suraj Khurana <sur...@apache.org> AuthorDate: Mon May 25 17:24:30 2020 +0530 Improved: Improved: Changed lineSplit value to 150. (OFBIZ-11737) Earlier it was 120, as per discussion over ML we decided to make it 150 instead. --- build.gradle | 2 +- config/checkstyle/checkstyle.xml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index e6ef484..759327c 100644 --- a/build.gradle +++ b/build.gradle @@ -286,7 +286,7 @@ checkstyle { // the sum of errors found last time it was changed after using the // ‘checkstyle’ tool present in the framework and in the official // plugins. - tasks.checkstyleMain.maxErrors = 37101 + tasks.checkstyleMain.maxErrors = 27599 // Currently there are a lot of errors so we need to temporarily // hide them to avoid polluting the terminal output. showViolations = false diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml index 527945a..af7b1dc 100644 --- a/config/checkstyle/checkstyle.xml +++ b/config/checkstyle/checkstyle.xml @@ -22,7 +22,7 @@ under the License. "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd"> <!-- This configuration corresponds to the OFBiz coding conventions - which are simply “Sun Coding Standards” + “120 characters line length” --> + which are simply “Sun Coding Standards” + “150 characters line length” --> <module name="Checker"> <module name="BeforeExecutionExclusionFileFilter"> <property name="fileNamePattern" value="module\-info\.java$"/> @@ -40,9 +40,9 @@ under the License. <property name="maximum" value="0"/> <property name="message" value="Line has trailing spaces."/> </module> - <module name="LineLength"> - <property name="max" value="120"/> - </module> + <module name="LineLength"> + <property name="max" value="150"/> + </module> <module name="TreeWalker"> <!-- Naming conventions -->