diff --git a/README.md b/README.md index 3e5eb93..1c1ac31 100644 --- a/README.md +++ b/README.md @@ -52,13 +52,15 @@ given source files. * Left side of a *foreach* or *foreach\_reverse* range expression is larger than the right. * Left side of a slice expression is larger than the right * Variable, struct, class, union, module, package, and interface names that do not comply with Phobos style guidelines +* Struct constructors that have a single parameter that has a default argument. +* Assign expressions where the left side of the '=' operator is the same as the right +* 'if' statements where the 'else' block is the same as the 'if' block. #### Wishlish * Assigning to foreach variables that are not "ref". * Unused variables. * Unused imports. * Unused parameters (check is skipped if function is marked "override") -* Struct constructors that have a single parameter that has a default argument. * Variables that are never modified and not declared immutable. * Public declarations not documented * Declaring opEquals without toHash