You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2022/02/19 09:03:34 UTC

[ofbiz-framework] branch release18.12 updated: Fixed: no functional change, increase checkstyle maxErrors from 38525 to 50000

This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release18.12 by this push:
     new e29e9a2  Fixed: no functional change, increase checkstyle maxErrors from 38525 to 50000
e29e9a2 is described below

commit e29e9a288a8ffb08ba95801207d3cb28fda04a5f
Author: Jacques Le Roux <ja...@les7arts.com>
AuthorDate: Sat Feb 19 10:03:24 2022 +0100

    Fixed: no functional change, increase checkstyle maxErrors from 38525 to 50000
    
    We don't care about maxerrors in 18.12. It's correctly handled in 22.01 and
    that's enough. This simplify devs work and it can uselessly disturb users
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index cd7c525..2b8087c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -82,7 +82,7 @@ checkstyle {
     // the sum of errors that were present before introducing the
     // ‘checkstyle’ tool present in the framework and in the official
     // plugins.
-    maxErrors = 38525
+    maxErrors = 50000
     // Currently there are a lot of errors so we need to temporarily
     // hide them to avoid polluting the terminal output.
     showViolations = false