Update README.md
This commit is contained in:
parent
d12653eef9
commit
532fb4af3c
|
@ -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 *foreach* or *foreach\_reverse* range expression is larger than the right.
|
||||||
* Left side of a slice 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
|
* 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
|
#### Wishlish
|
||||||
* Assigning to foreach variables that are not "ref".
|
* Assigning to foreach variables that are not "ref".
|
||||||
* Unused variables.
|
* Unused variables.
|
||||||
* Unused imports.
|
* Unused imports.
|
||||||
* Unused parameters (check is skipped if function is marked "override")
|
* 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.
|
* Variables that are never modified and not declared immutable.
|
||||||
* Public declarations not documented
|
* Public declarations not documented
|
||||||
* Declaring opEquals without toHash
|
* Declaring opEquals without toHash
|
||||||
|
|
Loading…
Reference in New Issue