Skip to content
Snippets Groups Projects
Commit 8ca9c1d6 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Add description for some pylint errors

parent 5471980a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment