ci: fix deprecated ruff config
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/docs Pipeline was successful Details
ci/woodpecker/push/notify Pipeline was successful Details

This commit is contained in:
Robert Kaussow 2024-02-18 12:13:56 +01:00
parent f65cf7c87f
commit b91480edea
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 3 additions and 5 deletions

View File

@ -1,9 +1,10 @@
[tool.ruff]
exclude = [".git","__pycache__"]
exclude = [".git", "__pycache__"]
line-length = 99
indent-width = 4
[tool.ruff.lint]
ignore = ["W191", "E111", "E114", "E117", "S101", "S105"]
select = ["F", "E", "I", "W", "S"]
@ -13,7 +14,4 @@ indent-style = "space"
line-ending = "lf"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::FutureWarning",
"ignore::DeprecationWarning",
]
filterwarnings = ["ignore::FutureWarning", "ignore::DeprecationWarning"]