diff options
author | Peter Kolbus <peter.kolbus@gmail.com> | 2020-11-29 07:57:39 -0600 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-09 09:13:05 +0100 |
commit | d19c7733717ae9ad0a527233c2950473dce3ffcf (patch) | |
tree | 4215a2523554d2230ce1276da867e27d45a2308c /examples | |
parent | 0f1245c2959f16dd68a2f7cf191c3cee0fcc08c2 (diff) | |
download | pylint-git-d19c7733717ae9ad0a527233c2950473dce3ffcf.tar.gz |
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'.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pylintrc | 7 |
1 files changed, 3 insertions, 4 deletions
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 |