Skip to content
Snippets Groups Projects
Commit 0798c3b3 authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

add pylint settings

parent 1caea9ed
No related branches found
No related tags found
1 merge request!56Increase code quality
......@@ -23,3 +23,29 @@ target-version = [
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pylint]
[tool.pylint.master]
extension-pkg-whitelist = [
"numpy",
"scipy",
"mpi4py",
]
ignore = "_version.py"
[tool.pylint.message_control]
max-line-length = 120
disable = [
"C0103", # ignore invalid-names like "x", "y"
"C0415", # ignore defered imports
"R0801", # ignore code duplications
]
[tool.pylint.reports]
output-format = "colorized"
[tool.pylint.design]
max-args = 7
max-attributes = 15
max-parents = 8
min-public-methods = 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment