From 357de9c04c862bf6b59609ab7e90cf3a875ee442 Mon Sep 17 00:00:00 2001 From: filmaj Date: Wed, 18 Sep 2013 10:12:31 -0700 Subject: [PATCH] Added variable camelCasing to style guide. --- docs/style-guide.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/style-guide.md b/docs/style-guide.md index 6d5f2fdb2..df02abd43 100644 --- a/docs/style-guide.md +++ b/docs/style-guide.md @@ -163,4 +163,12 @@ Style notes * Function is not followed by a space. Use `function() {` not `function () {` -* More to come.... +* Variable names should be camelCased: + + ```js + var myVariable = 42; + ``` + not + ```js + var my_variable = 42; + ```