diff --git a/docs/config_sizes.html b/docs/config_sizes.html index 085c8378d..2c02c8a6a 100644 --- a/docs/config_sizes.html +++ b/docs/config_sizes.html @@ -23,23 +23,23 @@
Checks for long source files.
@@ -71,9 +71,9 @@ To configure the check to accept files with up to 1500 lines:
-<config name="FileLength">
+<module name="FileLength">
<property name="max" value="1500"/>
-</config>
+</module>
Checks for long lines.
@@ -129,18 +129,18 @@ To configure the check to accept lines up to 120 characters long:
-<config name="LineLength">
+<module name="LineLength">
<property name="max" value="120"/>
-</config>
+</module>
To configure the check to ignore lines that begin with " * ", followed by just one word, such as within a Javadoc comment:
-<config name="LineLength">
+<module name="LineLength">
<property name="ignorePattern" value="^ *\* *[^ ]+$"/>
-</config>
+</module>
Checks for long methods and constructors.
@@ -197,16 +197,16 @@ To configure the check:
-<config name="MethodLength"/>
+<module name="MethodLength"/>
To configure the check so that it accepts methods with at most 60 lines:
-<config name="MethodLength">
+<module name="MethodLength">
<property name="tokens" value="METHOD_DEF"/>
<property name="max" value="60"/>
-</config>
+</module>
Checks the number of parameters of a method or constructor.
@@ -252,16 +252,16 @@ To configure the check:
-<config name="ParameterNumber"/>
+<module name="ParameterNumber"/>
To configure the check to allow 10 parameters for a method:
-<config name="ParameterNumber">
+<module name="ParameterNumber">
<property name="max" value="10"/>
<property name="tokens" value="METHOD_DEF"/>
-</config>
+</module>