]> granicus.if.org Git - graphviz/commitdiff
pylintrc: backport inclusive language change from Pylint
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 12 Mar 2021 02:13:31 +0000 (18:13 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 19 Mar 2021 02:32:38 +0000 (19:32 -0700)
Pylint commit 850c442dbda8d332049971d5c38f82b86da44f1d modified the pylintrc
template to remove the use of the problematic term “blacklist.” This commit
extracts the relevant parts of that and applies it to our code base, removing
the term in the Graphviz tree as well.

When upgrading to a version of Pylint that includes commit
12a76469782fab5c23d78039c4bfb37e3331945a, we should also swap our usage of
extension-pkg-whitelist for extension-pkg-allow-list.

.pylintrc

index 8f4ebd796b12869896d38117cdb1b4a30d8554e6..cf72f97c28881c5480c465aaff60b069d429425e 100644 (file)
--- a/.pylintrc
+++ b/.pylintrc
@@ -8,12 +8,11 @@ extension-pkg-whitelist=
 # Specify a score threshold to be exceeded before program exits with error.
 fail-under=10.0
 
-# Add files or directories to the blacklist. They should be base names, not
-# paths.
+# Files or directories to be skipped. They should be base names, not paths.
 ignore=CVS
 
-# Add files or directories matching the regex patterns to the blacklist. The
-# regex matches against base names, not paths.
+# Files or directories matching the regex patterns are skipped. The regex
+# matches against base names, not paths.
 ignore-patterns=
 
 # Python code to execute, usually for sys.path manipulation such as