From fb0f9c3bf351950a80385e6c932c8d60a7f40789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Noord?= <13665637+DanielNoord@users.noreply.github.com> Date: Sun, 28 Mar 2021 14:53:20 +0200 Subject: [PATCH] Increase max length to 100 --- .eslintrc.js | 9 +++++++++ .prettierrc.json | 3 +-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index deeecb5..1e6e783 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -23,5 +23,14 @@ module.exports = { 'no-alert': 'off', 'no-restricted-globals': 'off', 'prefer-destructuring': ['error', { object: true, array: false }], + 'max-len': [ + 1, + { + code: 100, + ignoreComments: true, + ignoreStrings: true, + ignoreTemplateLiterals: true, + }, + ], }, }; diff --git a/.prettierrc.json b/.prettierrc.json index 9409967..a20502b 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,5 +1,4 @@ { "singleQuote": true, - "trailingComma": "all", - "printWidth": 80 + "trailingComma": "all" }