From a6f217f7c376a18def76b885db02c046392f743e Mon Sep 17 00:00:00 2001 From: Andy Alt Date: Thu, 20 Sep 2018 16:40:26 -0500 Subject: [PATCH] Update CONTRIBUTING.md add case and indent info [skip ci] --- CONTRIBUTING.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d6b9e8d6e..e56b6349e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -71,8 +71,10 @@ As we are working on code forked from another project, you may see some inconsis [The JAVA variant of K&R](https://en.wikipedia.org/wiki/Indentation_style#Variant:_Java) -Curly braces should be at the side and parameters and conditions should be next to -each other, not under each other (unless line length exceeds 80-120 characters). +Use *camelCase* for variables and function names, *CapitalCase* for classes. +Use *tabs* for indenting. Curly braces should be at the side and parameters and +conditions should be next to each other, not under each other (unless line length +exceeds 80-120 characters). Sometimes a patch will be a single line in a single file; other times a single patch will consist of changes to several files. Keep unrelated patches separate