30 lines
847 B
Diff
30 lines
847 B
Diff
|
From 81e85bd5ebadfa90851e22999a851375f7de363e Mon Sep 17 00:00:00 2001
|
||
|
From: Petr Stodulka <pstodulk@redhat.com>
|
||
|
Date: Thu, 16 Nov 2023 09:30:22 +0100
|
||
|
Subject: [PATCH 34/38] pylint: ignore too-many-lines
|
||
|
|
||
|
It limits 1000 lines of code per module and targetuserspacecreator
|
||
|
actor's lib is beyond that limit. This is not type of problem
|
||
|
we want to deal with anyway.
|
||
|
---
|
||
|
.pylintrc | 3 ++-
|
||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/.pylintrc b/.pylintrc
|
||
|
index 0adb7dcc..57259bcb 100644
|
||
|
--- a/.pylintrc
|
||
|
+++ b/.pylintrc
|
||
|
@@ -56,7 +56,8 @@ disable=
|
||
|
use-dict-literal,
|
||
|
redundant-u-string-prefix, # still have py2 to support
|
||
|
logging-format-interpolation,
|
||
|
- logging-not-lazy
|
||
|
+ logging-not-lazy,
|
||
|
+ too-many-lines # we do not want to take care about that one
|
||
|
|
||
|
[FORMAT]
|
||
|
# Maximum number of characters on a single line.
|
||
|
--
|
||
|
2.41.0
|
||
|
|