summaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorDoug Kearns <dougkearns@gmail.com>2009-01-04 22:21:53 +1100
committerDoug Kearns <dougkearns@gmail.com>2009-01-05 21:10:55 +1100
commitea04b2b2be2c87f704e582360344db21c6e8bef4 (patch)
treec841cebc9a9a6c6d9b8850d135819d031c89da9f /HACKING
parent0d3d8ce63be4f7bb53705d0f73856d7a21adee4c (diff)
downloadpentadactyl-ea04b2b2be2c87f704e582360344db21c6e8bef4.tar.gz
Add a couple of points to the style guide.
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING33
1 files changed, 28 insertions, 5 deletions
diff --git a/HACKING b/HACKING
index a40b6b17..e5026f14 100644
--- a/HACKING
+++ b/HACKING
@@ -1,19 +1,27 @@
== Coding Style ==
+<<<<<<< HEAD:HACKING
In general: Just look at other source code!
+=======
+
+In general: Just look at the existing source code!
+>>>>>>> Add a couple of points to the style guide.:HACKING
We try to be quite consistent, but of course, that's not always possible.
=== The most important style issues are: ===
-* Use 4 spaces to indent things, no tabs, not 2, nor 8 spaces. If you use vim,
+
+* Use 4 spaces to indent things, no tabs, not 2, nor 8 spaces. If you use Vim,
this should be taken care of automatically by the modeline.
+* No trailing whitespace.
+
* Use " for enclosing strings instead of ', unless using ' avoids escaping of lots of "
Example: alert("foo") instead of alert('foo');
-* Exactly one space after if/for/while/etc. and after a comma, but none after a parenthesis
- or after a function call:
+* Exactly one space after if/for/while/catch etc. and after a comma, but none
+ after a parenthesis or after a function call:
for (pre, condition, post)
but:
- alert("bla");
+ alert("foo");
* Opening curly brackets { must be on a new line, unless it is used in a closure:
myFunction ()
@@ -25,12 +33,25 @@ We try to be quite consistent, but of course, that's not always possible.
...
});
-* Prefer // over /* */ comments (exceptions for big comments are usually ok)
+* Anonymous function definitions should be formatted with a space after the
+ keyword "function". Example: function () {}, not function() {}.
+
+* Prefer the use of let over var i.e. only use var when required.
+
+* Reuse common local variable names E.g. "elem" is generally used for element,
+ "win" for windows etc.
+
+* Prefer // over /* */ comments (exceptions for big comments are usually OK)
Right: if (HACK) // TODO: remove hack
Wrong: if (HACK) /* TODO: remove hack */
+ Documentation comment blocks use /** ... */
+
+* Only wrap lines if it makes the code obviously clearer. Lines longer than 132
+ characters should probably be broken up rather than wrapped anyway.
* Use UNIX new lines (\n), not windows (\r\n) or old Mac ones (\r)
+<<<<<<< HEAD:HACKING
== TESTING/OPTIMIZATION ==
TODO: Add some information here about testing/validation/etc.
@@ -38,3 +59,5 @@ Information about how/when to use :regressions might be nice.
Additionally, maybe there should be some benchmark information here --
something to let a developer know what's "too" slow...? Or general
guidelines about optimization?
+=======
+>>>>>>> Add a couple of points to the style guide.:HACKING