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-09-23 23:23:36 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-09-23 23:23:36 +0300
commita01c130afad9965977cd41534a821b380c21b374 (patch)
tree3a15167d69989d234095d18ccbbc04ae4c4d87bd /scripts
parent1d4f0a58aba1a981e85684b2f99e59645187f3aa (diff)
CI: Disable pylint E1136 for now
This reports a false positiv, see https://gitlab.gnome.org/GNOME/pygobject/issues/361
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dev/pylint-ci.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/dev/pylint-ci.sh b/scripts/dev/pylint-ci.sh
index 0e3e3d98d..ff9ad82f0 100755
--- a/scripts/dev/pylint-ci.sh
+++ b/scripts/dev/pylint-ci.sh
@@ -2,7 +2,7 @@
PYLINT=${PYLINT:-pylint}
"$PYLINT" --version
-"$PYLINT" --disable=C0103,C0302,C0301,C0330,E0401,E0611,E1101,R0201,R0901,R0904,R0912,R0913,R0914,R0915,R0916,R1702,R1710,W0201,W0212,W0221,W0223,W0231,W0233,W0603,W0613 "$@"
+"$PYLINT" --disable=C0103,C0302,C0301,C0330,E0401,E0611,E1101,E1136,R0201,R0901,R0904,R0912,R0913,R0914,R0915,R0916,R1702,R1710,W0201,W0212,W0221,W0223,W0231,W0233,W0603,W0613 "$@"
# C0103 invalid-name
# C0301 line-too-long
@@ -11,6 +11,7 @@ PYLINT=${PYLINT:-pylint}
# E0401 import-error
# E0611 no-name-in-module
# E1101 no-member
+# E1136 unsubscriptable-object
# R0201 no-self-use
# R0901 too-many-ancestors
# R0904 too-many-public-methods