Skip to content

Commit 94f8a6b

Browse files
committed
added anchor links to original passages in amendments section
1 parent 3aa004f commit 94f8a6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2799,10 +2799,10 @@ We mostly adhere to Airbnb's JavaScript style guide. In a few points though, we
27992799
28002800
All of those customizations are also reflected in our ESLint config which is available as npm package: [eslint-config-apertomove](https://www.npmjs.com/package/eslint-config-apertomove)
28012801
2802-
* we don't enforce a maximum line length, although this is something we should discuss for the future
2803-
* we always use 4 spaces as indention
2804-
* we don't allow trailing commas in objects. For instance, this is not allowed: `{ foo: 1, bar: 2, }`
2805-
* we require the body of arrow functions to be enclosed in curly braces: `const fn = val => { return 2 * val; }`
2802+
* [18.1](#whitespace--spaces): we always use 4 spaces as indention
2803+
* [18.12](#whitespace--max-len): we don't enforce a maximum line length, although this is something we should discuss for the future
2804+
* [19.2](#commas--dangling): we don't allow trailing commas in objects. For instance, this is not allowed: `{ foo: 1, bar: 2, }`
2805+
* [8.2](#arrows--implicit-return): we require the body of arrow functions to be enclosed in curly braces: `const fn = val => { return 2 * val; }`
28062806
* we disallow labeled code entirely, see [no-labels rule](http://eslint.org/docs/rules/no-labels)
28072807
* we only warn (don't error) on unused variables
28082808
* we don't [disallow early use of variables](http://eslint.org/docs/rules/no-use-before-define), since it also errored when variables were used in functions that were not called before the variable was declared.

0 commit comments

Comments
 (0)