You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2018/04/27 17:13:55 UTC

svn commit: r1830366 - /pivot/trunk/pivot_checks.xml

Author: rwhitcomb
Date: Fri Apr 27 17:13:55 2018
New Revision: 1830366

URL: http://svn.apache.org/viewvc?rev=1830366&view=rev
Log:
PIVOT-1032:  Update the style checks to allow max method length of 200 lines
(up from the default of 150) because we have a fair number of long methods
that we would be hard pressed to shorten.  At least this setting reduces
the "errors" from this check to only highlight REALLY long methods.


Modified:
    pivot/trunk/pivot_checks.xml

Modified: pivot/trunk/pivot_checks.xml
URL: http://svn.apache.org/viewvc/pivot/trunk/pivot_checks.xml?rev=1830366&r1=1830365&r2=1830366&view=diff
==============================================================================
--- pivot/trunk/pivot_checks.xml (original)
+++ pivot/trunk/pivot_checks.xml Fri Apr 27 17:13:55 2018
@@ -112,7 +112,9 @@
         <module name="LineLength">
             <property name="max" value="110"/>
         </module>
-        <module name="MethodLength"/>
+        <module name="MethodLength">
+            <property name="max" value="200"/>
+        </module>
         <module name="ParameterNumber">
             <property name="max" value="9"/>
         </module>