Update HACKING.md

This commit is contained in:
Stefan Breunig 2013-03-07 16:11:08 +01:00
parent 6796d1b37b
commit d5289690fa

View File

@ -27,8 +27,9 @@ Please follow the these guidelines. Some are just preference, others are good pr
- use identity operators: `===` and `!==`. [Why do I want this?](http://stackoverflow.com/a/359509/1684530) - use identity operators: `===` and `!==`. [Why do I want this?](http://stackoverflow.com/a/359509/1684530)
- jQuery is your friend - jQuery is your friend
- indent using two spaces - indent using two spaces
- opening brace on the same line with a space after the if/for/etc: `if(blub) {` - opening brace on the same line: `if(blub) {`
- else clauses: `} else if(blub) {` or `} else {` - else clauses: `} else if(blub) {` or `} else {`
- there should be no space after `if`, `for`, etc. E.g. `if(true) { doStuff(); } else { dontDoStuff(); }`
- comments: `// this is a comment` - comments: `// this is a comment`
- quotes: Use single-quotes for JavaScript and double-quotes for HTML content. Example: `$('body').append('<div id="soup">Soup!</div>');`. - quotes: Use single-quotes for JavaScript and double-quotes for HTML content. Example: `$('body').append('<div id="soup">Soup!</div>');`.
- there is no length limit on lines, but try to keep them short where suitable - there is no length limit on lines, but try to keep them short where suitable