From 0b4556e72ba64cfead1cb546dd817ec64509aacf Mon Sep 17 00:00:00 2001 From: David Cook Date: Tue, 2 May 2023 16:35:41 +1000 Subject: [PATCH] Allow line length up to 100char Same as we have for Ruby code: https://github.com/openfoodfoundation/openfoodnetwork/blob/master/.rubocop_styleguide.yml#L78-L80 This will avoid unnecessary reformatting. --- .prettierrc.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.prettierrc.json b/.prettierrc.json index 0967ef424b..de753c537d 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1 +1,3 @@ -{} +{ + "printWidth": 100 +}