aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2024-09-23 12:15:30 -0400
committerMike Gilbert <floppym@gentoo.org>2024-09-23 12:29:38 -0400
commit38ff9e6ce8625d4d2a993a9aa3ee488043e8210e (patch)
treedd5efcd03c095d198139e53d1326ccd7ab1ce379
parentNEWS, meson.build: prepare for portage-3.0.66.1 (diff)
downloadportage-38ff9e6ce8625d4d2a993a9aa3ee488043e8210e.tar.gz
portage-38ff9e6ce8625d4d2a993a9aa3ee488043e8210e.tar.bz2
portage-38ff9e6ce8625d4d2a993a9aa3ee488043e8210e.zip
Remove obsolete pylint options
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
-rw-r--r--lib/portage/util/whirlpool.py2
-rw-r--r--pylintrc7
2 files changed, 0 insertions, 9 deletions
diff --git a/lib/portage/util/whirlpool.py b/lib/portage/util/whirlpool.py
index 62fcfda53..4726846ff 100644
--- a/lib/portage/util/whirlpool.py
+++ b/lib/portage/util/whirlpool.py
@@ -28,8 +28,6 @@
##
# This Python implementation is therefore also placed in the public domain.
-# pylint: disable=mixed-indentation
-
import warnings
from portage.localization import _
diff --git a/pylintrc b/pylintrc
index 9d3dae621..612f967e2 100644
--- a/pylintrc
+++ b/pylintrc
@@ -219,13 +219,6 @@ max-line-length=100
# Maximum number of lines in a module.
max-module-lines=10000
-# List of optional constructs for which whitespace checking is disabled. `dict-
-# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
-# `trailing-comma` allows a space between comma and closing bracket: (a, ).
-# `empty-line` allows space-only lines.
-no-space-check=trailing-comma,
- dict-separator
-
# Allow the body of a class to be on the same line as the declaration if body
# contains single statement.
single-line-class-stmt=no