diff options
Diffstat (limited to 'checkstyle.xml')
-rw-r--r-- | checkstyle.xml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/checkstyle.xml b/checkstyle.xml index 9d0314b06..7d52f4225 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -67,7 +67,10 @@ <module name="LineLength"> <property name="max" value="120"/> </module> - <module name="MethodLength"/> + <module name="MethodLength"> + <property name="tokens" value="METHOD_DEF"/> + <property name="max" value="160"/> + </module> <module name="ParameterNumber"/> <!-- Checks for whitespace --> |