summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorParide Legovini <paride@ubuntu.com>2022-06-27 16:36:41 +0200
committerGitHub <noreply@github.com>2022-06-27 09:36:41 -0500
commita6624700fc8943197cf9daa53fb6af77a7a5424c (patch)
tree3b1ba16160271d33b7e3a194df7f4b686c07a40d /.pylintrc
parentd0f13f456b41fa7679548edef67960dc827b2f65 (diff)
downloadcloud-init-git-a6624700fc8943197cf9daa53fb6af77a7a5424c.tar.gz
CI: add non-blocking run against the linters tip versions (#1531)
Changes: * Tox: the tip-black and tip-isort environments. * Tox: reuse the non-tip commands in the tip- environments. * Add non-blocking (continue-on-error: true) step in the test test matrix to run the tip- linters on ubuntu-latest. * Code fixups to make tip-pylint pass. * Bump the pinned pylint version to 2.13.9 (last version supporting Python 3.6).
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 3edb0092..ea686815 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -25,8 +25,9 @@ jobs=4
# W0703(broad-except)
# W1401(anomalous-backslash-in-string)
# W1514(unspecified-encoding)
+# E0012(bad-option-value)
-disable=C, F, I, R, W0201, W0212, W0221, W0222, W0223, W0231, W0311, W0511, W0602, W0603, W0611, W0613, W0621, W0622, W0631, W0703, W1401, W1514
+disable=C, F, I, R, W0201, W0212, W0221, W0222, W0223, W0231, W0311, W0511, W0602, W0603, W0611, W0613, W0621, W0622, W0631, W0703, W1401, W1514, E0012
[REPORTS]