Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-04-07 20:04:21 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-04-07 20:04:21 +0300
commit8ca9c1d6e3e5b0c82a9a1e2296ac48461d64fec3 (patch)
treec18ae8b0e124cbfcc5bd88da5b39b0331b7b5fbb
parent5471980a8cce499509d323f3423cebec9a052224 (diff)
Add description for some pylint errors
-rw-r--r--pylintrc9
-rwxr-xr-xscripts/dev/pylint-ci.sh8
2 files changed, 13 insertions, 4 deletions
diff --git a/pylintrc b/pylintrc
index 4bb80d20e..200530349 100644
--- a/pylintrc
+++ b/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
diff --git a/scripts/dev/pylint-ci.sh b/scripts/dev/pylint-ci.sh
index bde8405ba..b16d680a4 100755
--- a/scripts/dev/pylint-ci.sh
+++ b/scripts/dev/pylint-ci.sh
@@ -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