Update CONTRIBUTING.md

Added a bullet to the style guide to use single quotes.
This commit is contained in:
Eric Martin
2016-04-04 21:46:10 -04:00
parent f29b1cbfa6
commit 582ff889af
+1
View File
@@ -54,6 +54,7 @@ Some simple rules, that will make it easier to maintain our codebase:
* A space before function parameters, such as: `function boom (name, callback) { }`, this makes searching for calls easier
* Name your callback functions, such as `boom('the name', function afterBoom ( result ) { }`
* Don't include author names in the header of your files, if you need to give credit to someone else do it in the commit comment.
* Use single quotes.
* Use the comma first style, for example:
```javascript