Histacom2/CONTRIBUTING.md

14 lines
391 B
Markdown
Raw Permalink Normal View History

2017-07-21 09:23:07 -04:00
# Coding Regulations
If you want to contribute, you need to follow these coding regulations for your code to be considered.
## Type names
Please, do not use C# type names.
In other words, use `string` instead of `String`,
use `bool` rather than `Boolean`, etc.
2017-07-21 09:25:14 -04:00
## camelCase
When you define something private or local, name it using camelCase. However, if it is public, use PascalCase.