From c36077282793cf3b46aa8a0523cc7b21dd94c7f8 Mon Sep 17 00:00:00 2001 From: PP_Pro Date: Wed, 20 Sep 2023 14:32:41 +0800 Subject: [PATCH] no max-len rule --- .eslintrc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.yaml b/.eslintrc.yaml index df438194553..311ffeb8ca8 100644 --- a/.eslintrc.yaml +++ b/.eslintrc.yaml @@ -83,7 +83,7 @@ rules: lines-between-class-members: off # be more lenient on member declarations max-classes-per-file: off # helper classes are common - max-len: [warn, 150] # more lenient on max length per line + max-len: off # no max line length limitation no-console: error # prefer the uniform logging methods no-plusplus: off # allow increment/decrement operators no-continue: off # allow unlabeled continues