Add description for some pylint errors

This commit is contained in:
Philipp Hörist 2019-04-07 19:04:21 +02:00
parent 5471980a8c
commit 8ca9c1d6e3
2 changed files with 13 additions and 4 deletions

View File

@ -50,6 +50,15 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have # --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes # no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W" # --disable=W"
# C0111 missing-docstring
# C0301 line too long
# R1710 inconsistent-return-statements
# R0912 too-many-branches
# R0914 too-many-locals
# R0915 too-many-statements
# W0511 fix-me
# W0231 super-init-not-called
# W0233 non-parent-init-called
disable=C0111,C0301,R1710,R0912,R0914,R0915,W0511,W0231,W0233 disable=C0111,C0301,R1710,R0912,R0914,R0915,W0511,W0231,W0233
# Enable the message, report, category or checker with the given id(s). You can # Enable the message, report, category or checker with the given id(s). You can

View File

@ -24,10 +24,10 @@ PYLINT=${PYLINT:-pylint}
# R0904 too-many-public-methods # R0904 too-many-public-methods
# R0913 too-many-arguments # R0913 too-many-arguments
# R0916 too-many-boolean-expressions # R0916 too-many-boolean-expressions
# R1702 # R1702 too-many-nested-blocks
# R1706 # R1706 consider-using-ternary
# R1711 # R1711 useless-return
# R1716 # R1716 chained-comparison
# W0201 attribute-defined-outside-init # W0201 attribute-defined-outside-init
# W0212 protected-access # W0212 protected-access
# W0221 arguments-differ # W0221 arguments-differ