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
path: root/.ci
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2022-06-18 16:47:27 +0300
committerlovetox <philipp@hoerist.com>2022-06-18 16:47:27 +0300
commit6db439cad37801e92f784e997be870c99049242f (patch)
tree8f817bb9f43cc42d816b466b54050b8a37b02750 /.ci
parent910a9109f3e9e9f419ef05597cf04e31794737e6 (diff)
ci: Use flake8 for unused-import check
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/pylint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/pylint.sh b/.ci/pylint.sh
index f3fabd233..962d52022 100755
--- a/.ci/pylint.sh
+++ b/.ci/pylint.sh
@@ -39,7 +39,7 @@ PYLINT=${PYLINT:-pylint}
# W1115 non-str-assignment-to-dunder-name
# W1116 isinstance-second-argument-not-valid-type
-IGNORE_FLAKE8='C0301'
+IGNORE_FLAKE8='C0301,W0611'
IGNORE_PYRIGHT='E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1140,E1141,E1142,I1101,W0212,W1113,W1114,W1115,W1116'