From a199569aac168395cd3a7fcef9e9e898c481c1a4 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Thu, 28 Aug 2025 15:44:56 +0200 Subject: [PATCH] [Eslint] Increase max line length --- config/lint/eslint.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/lint/eslint.config.mjs b/config/lint/eslint.config.mjs index e0d93a7..9d317d9 100644 --- a/config/lint/eslint.config.mjs +++ b/config/lint/eslint.config.mjs @@ -118,8 +118,8 @@ const style = { '@stylistic/max-len': [ 'warn', { - 'code': 90, - 'comments': 100, + 'code': 120, + 'comments': 140, 'ignoreComments': false, 'ignoreUrls': true, 'ignoreStrings': false