Skip to content

Commit 291b8d7

Browse files
committed
Disable too-many-lines pylint rule.
1 parent d1259a4 commit 291b8d7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ confidence=
5656
# --disable=W"
5757
disable=fixme,
5858
missing-docstring,
59-
invalid-name
59+
invalid-name,
60+
too-many-lines
6061
# Enable the message, report, category or checker with the given id(s). You can
6162
# either give multiple identifier separated by comma (,) or put this option
6263
# multiple time (only on the command line, not in the configuration file where

.pylintrc37

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ disable=invalid-name,
145145
comprehension-escape,
146146
no-else-return,
147147
useless-object-inheritance,
148-
possibly-unused-variable
148+
possibly-unused-variable,
149+
too-many-lines
149150

150151
# Enable the message, report, category or checker with the given id(s). You can
151152
# either give multiple identifier separated by comma (,) or put this option

0 commit comments

Comments
 (0)