Add description for some pylint errors
This commit is contained in:
parent
5471980a8c
commit
8ca9c1d6e3
9
pylintrc
9
pylintrc
|
@ -50,6 +50,15 @@ 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"
|
||||
# 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
|
||||
|
||||
# Enable the message, report, category or checker with the given id(s). You can
|
||||
|
|
|
@ -24,10 +24,10 @@ PYLINT=${PYLINT:-pylint}
|
|||
# R0904 too-many-public-methods
|
||||
# R0913 too-many-arguments
|
||||
# R0916 too-many-boolean-expressions
|
||||
# R1702
|
||||
# R1706
|
||||
# R1711
|
||||
# R1716
|
||||
# R1702 too-many-nested-blocks
|
||||
# R1706 consider-using-ternary
|
||||
# R1711 useless-return
|
||||
# R1716 chained-comparison
|
||||
# W0201 attribute-defined-outside-init
|
||||
# W0212 protected-access
|
||||
# W0221 arguments-differ
|
||||
|
|
Loading…
Reference in New Issue