Added variable camelCasing to style guide.

This commit is contained in:
filmaj
2013-09-18 10:12:31 -07:00
parent aaf704db8a
commit 357de9c04c

View File

@@ -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;
```