Skip to content
Snippets Groups Projects
Commit d72be6ef authored by Nils-Arne Dreier's avatar Nils-Arne Dreier
Browse files

linter: make ruff less pedantic

parent 1bf28463
No related branches found
No related tags found
1 merge request!15Static code analysis
......@@ -22,6 +22,18 @@ hiopy-worker = "hiopy.worker:main"
# Turn on strictest ruff checker as a default
[tool.ruff]
select = ["ALL"]
lint.select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
line-length = 100 # accomodate any libc++ motivated requirements of over 80 characters
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