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:
authorPhilipp Hörist <philipp@hoerist.com>2022-12-05 01:50:58 +0300
committerPhilipp Hörist <philipp@hoerist.com>2022-12-05 02:00:21 +0300
commit9e9101a738b29a7e246ada1ba72b9dfaa207e385 (patch)
tree005b627ec5e7787d25cca1c2d2862ce8f08279f7 /.ci
parent6440fd6033d8f0368dfadadc0d2e8155a52c6336 (diff)
ci: Repace pylint/flake8 with ruff
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/pylint.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/.ci/pylint.sh b/.ci/pylint.sh
deleted file mode 100755
index a377167b4..000000000
--- a/.ci/pylint.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-# exit when any command fails
-set -e
-
-PYLINT=${PYLINT:-pylint}
-
-# Ignore but need fixing
-
-# C0103 invalid-name
-# C0415 import-outside-toplevel
-# R1710 inconsistent-return-statements
-# W0201 attribute-defined-outside-init
-# W0221 arguments-differ
-# W0233 non-parent-init-called
-# W0613 unused-argument
-
-NEED_FIXING=C0103,C0415,R1710,W0201,W0221,W0233,W0613
-
-
-"$PYLINT" --version
-"$PYLINT" --disable="$NEED_FIXING" --ignore=modules,dbus "$@"
-"$PYLINT" --disable="C0415" "$@/common/modules"
-"$PYLINT" "$@/common/dbus"