Skip to content
Snippets Groups Projects
Verified Commit 2dff2471 authored by Björn Ludwig's avatar Björn Ludwig
Browse files

chore(pylint): introduce one setting to avoid false positives about missing members

parent cfeea519
No related branches found
No related tags found
No related merge requests found
...@@ -111,13 +111,15 @@ exclude = "venv" ...@@ -111,13 +111,15 @@ exclude = "venv"
max-line-length = 88 max-line-length = 88
[tool.pylint.typecheck] [tool.pylint.typecheck]
# List of members which are set dynamically and missed by pylint inference # List of class names for which member attributes should not be checked (useful
# system, and so shouldn't trigger E1101 when accessed. Python regular # for classes with dynamically set attributes). This supports the use of
# expressions are accepted. # qualified names.
#generated-members = "<package-name>.*" ignored-classes = "YStats"
[tool.pylint.main] [tool.pylint.main]
# A comma-separated list of package or module names from where C extensions may # 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 # be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code. # run arbitrary code.
extension-pkg-allow-list = ["pyscipopt"] extension-pkg-allow-list = ["pyscipopt"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment