From 3b52e46274bd788a4953714a248fb95bca3408a2 Mon Sep 17 00:00:00 2001 From: lempamo Date: Fri, 21 Jul 2017 09:23:07 -0400 Subject: Create CONTRIBUTING.md --- CONTRIBUTING.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..db04143 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,9 @@ +# 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. -- cgit v1.2.3 From 840c2ad2abdd174ad955f554077a91f0ef86a944 Mon Sep 17 00:00:00 2001 From: lempamo Date: Fri, 21 Jul 2017 09:25:14 -0400 Subject: Update CONTRIBUTING.md --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index db04143..b8c2dce 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,3 +7,7 @@ If you want to contribute, you need to follow these coding regulations for your 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. -- cgit v1.2.3