Fix enumeration in HACKING.md

The HACKING.md file contains an enumeration in the Indentation and
whitespace section, but the sentences look incorrectly divided.

This patch proposes a fix for that section, reordering all its
contents in a single enumeration, instead of a paragraph and
an enumeration, and also reconstruct the sentences.
This commit is contained in:
Sergio Costas 2018-10-14 14:05:04 +02:00
parent 76117fd306
commit aa685310bb

View File

@ -10,15 +10,15 @@ Life isn't fun if you can't break the rules. If a rule seems unnecessarily
restrictive while you're coding, ignore it, and let the patch reviewer decide restrictive while you're coding, ignore it, and let the patch reviewer decide
what to do. what to do.
## Indentation and whitespace ## Indentation, braces and whitespace
Use four-space indents. Braces are on the same line as their associated * Use four-space indents.
statements. You should only omit braces if *both* sides of the statement are * Braces are on the same line as their associated statements.
on one line. * You should only omit braces if *both* sides of the statement are on one line.
* One space after the `function` keyword.
* No space between the function name in a declaration or a call.
* One space before the parens in the `if` statements, or `while`, or `for` loops.
* One space after the `function` keyword. No space between the function name
* in a declaration or a call. One space before the parens in the `if`
* statements, or `while`, or `for` loops.
```javascript ```javascript
function foo(a, b) { function foo(a, b) {
let bar; let bar;