From 7d614ff897d7b29c367a354e118c0613629b0fdd Mon Sep 17 00:00:00 2001 From: ferfissimo Date: Tue, 23 Nov 2021 14:53:59 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9EDevelopment=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Development.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Development.md b/Development.md index 447e039..ebf8d76 100644 --- a/Development.md +++ b/Development.md @@ -28,17 +28,17 @@ We try to keep it simple, as such we enforce using following code styles: When writing python we follow `PEP-8`, more precisely we are using [black](https://black.readthedocs.io/en/stable/) with a line length of 120 characters. #### ECMAScript / TypeScript -We follow the presets of `prettier` version `2.3.0` with this exceptions: +We follow the presets of `prettier` version `2.4` with this exceptions: * You should use single quotes * Print semicolons at the ends of statements -* Line length is 120 characters +* Line length is 100 characters * Allways use parens for arrow functions, e.g. `(x) => fo` ```json "prettier": { "singleQuote": true, "semi": true, - "printWidth": 120, + "printWidth": 100, "arrowParens": "always" } ```