From d19c7733717ae9ad0a527233c2950473dce3ffcf Mon Sep 17 00:00:00 2001 From: Peter Kolbus Date: Sun, 29 Nov 2020 07:57:39 -0600 Subject: Reduce 'blacklist' term for ignored files Replace usage of the term 'blacklist' in the context of ignored files and directories (--ignore and --ignore-patterns), except in cases where backward compatibility is needed. In documentation and help, supplement 'ignore' with 'skip'; in code use the term 'ignore list'. --- examples/pylintrc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'examples/pylintrc') diff --git a/examples/pylintrc b/examples/pylintrc index e5995bbae..211796fa9 100644 --- a/examples/pylintrc +++ b/examples/pylintrc @@ -8,12 +8,11 @@ extension-pkg-whitelist= # Specify a score threshold to be exceeded before program exits with error. fail-under=10 -# 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 -- cgit v1.2.1