summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorPeter Kolbus <peter.kolbus@gmail.com>2020-11-29 07:57:39 -0600
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-09 09:13:05 +0100
commit12beaa0d3fa050b68dff092520966c63d2f0e437 (patch)
tree43db9ce6bb831103042cc9c19e56145c7781ce25 /examples
parentf17007b55e79af1e36d4aad5ec1802fe1ba51662 (diff)
downloadpylint-git-12beaa0d3fa050b68dff092520966c63d2f0e437.tar.gz
Add extension-pkg-allow-list option
Add an option extension-pkg-allow-list to the main checker. This is an alternate name for extension-pkg-whitelist.
Diffstat (limited to 'examples')
-rw-r--r--examples/pylintrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index 211796fa9..1a98ef656 100644
--- a/examples/pylintrc
+++ b/examples/pylintrc
@@ -3,6 +3,12 @@
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code.
+extension-pkg-allow-list=
+
+# A comma-separated list of package or module names from where C extensions may
+# be loaded. Extensions are loading into the active Python interpreter and may
+# run arbitrary code. (This is an alternative name to extension-pkg-allow-list
+# for backward compatibility.)
extension-pkg-whitelist=
# Specify a score threshold to be exceeded before program exits with error.