diff --git a/docs/index.html b/docs/index.html
index 18d876e2b..a6843ceed 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -57,7 +57,7 @@
Hosted by:
-
+
@@ -86,15 +86,19 @@
Unused or duplicate import statements.
Javadoc comments are defined for class, interface, variable and method declarations. Note: This can be made to check only public and protected declarations.
Javadoc tags for a method match the actual code.
+ The package.html package documentation file is available.
The file starts with a specified header. This is useful to ensure that a file has a copyright notice.
An @author tag exists for class and interface Javadoc comments.
Format of variable names match specified regular expressions. For example, can enforce that all static variables must start with "s".
Format of class and interface names match a specified regular expression.
Format of parameter names match a specified regular expression.
Variables that are not declared as private or protected.
+ Order of modifiers matches the recommendation in the Java Language specification.
Correct use of white space around binary and unary operators. For example, x -=- 1; is illegal, whereas x -= -1; is not.
+ Periods ('.') are not surrounded by whitespace.
Ensure white space follows casts and commas. For example both x = (File)obj and run(arg1,arg2) are illegal, whereas x = (File) obj and run(arg1, arg2) are not.
Ensure {}'s are used for if/while/for/do constructs.
+ Correct placement of {'s and }'s (same line vs. next line).
Lines do not contain tabs.
Lines are not longer than a specified length.
Methods/Constructors are not longer than a specified number of lines.