diff options
| author | lempamo <[email protected]> | 2017-07-21 11:06:15 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-21 11:06:15 -0400 |
| commit | bfaf46cf144a73ec984e7c85cd2cc3acd2c9719c (patch) | |
| tree | a97ec6634f0a2462d4712f82726c8f79ad5e0a90 | |
| parent | 0e4af49563e5e9024f56ddeb762442a44b1cdc56 (diff) | |
| parent | 840c2ad2abdd174ad955f554077a91f0ef86a944 (diff) | |
| download | histacom2-bfaf46cf144a73ec984e7c85cd2cc3acd2c9719c.tar.gz histacom2-bfaf46cf144a73ec984e7c85cd2cc3acd2c9719c.tar.bz2 histacom2-bfaf46cf144a73ec984e7c85cd2cc3acd2c9719c.zip | |
Merge branch 'master' of https://github.com/TimeHACKDevs/TimeHACK.git
| -rw-r--r-- | CONTRIBUTING.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..b8c2dce --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,13 @@ +# 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. + +## camelCase + +When you define something private or local, name it using camelCase. However, if it is public, use PascalCase. |
