Skip to content

Commit

Permalink
Added casing for local functions & tuple elements. (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkoelman authored and dennisdoomen committed Oct 22, 2017
1 parent 2ffb92d commit e293f8f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Src/Guidelines/1700_NamingGuidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@ Constant Local variable | Camel | `maximumItems` |
Read-only static field | Pascal | `RedValue` |
Local Variable | Camel | `listOfValues` |
Method | Pascal | `ToString` |
Local function | Pascal | `FormatText` |
Namespace | Pascal | `System.Drawing` |
Parameter | Camel | `typeName` |
Type Parameter | Pascal | `TView` |
Property | Pascal | `BackColor` |
Tuple element | Camel | `firstName` |

### <a name="av1704"></a> Don't include numbers in variables, parameters and type members (AV1704) ![](images/3.png)
In most cases they are a lazy excuse for not defining a clear and intention-revealing name.
Expand Down

0 comments on commit e293f8f

Please sign in to comment.