pylint: Disable too-many-statements

pylint reports

kas/includehandler.py:148:4: R0915: Too many statements (58/50) (too-many-statements)

All attempts to silence via a local disable didn't work, so disable it
on a global level. There is little value in this warning anyway.

Signed-off-by: Daniel Wagner <daniel.wagner@siemens.com>
This commit is contained in:
Daniel Wagner 2018-07-18 15:59:19 +02:00
parent 06f0c20f21
commit 6c30f32b58

View File

@ -65,7 +65,8 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
disable=too-few-public-methods,locally-disabled,redefined-variable-type
disable=too-few-public-methods,locally-disabled,redefined-variable-type,too-many-statements
[REPORTS]