Add ruff linting - initial configuration

This commit is contained in:
Matthias
2023-02-22 21:06:07 +01:00
parent 2bc9413be1
commit 549a0e1c44
4 changed files with 33 additions and 0 deletions

View File

@@ -56,3 +56,17 @@ exclude = [
"build_helpers/*.py",
]
ignore = ["freqtrade/vendor/**"]
[tool.ruff]
line-length = 100
extend-exclude = [".env"]
extend-select = [
"TID",
"EXE",
"YTT",
# "DTZ",
# "RSE",
# "TCH",
# "PTH",
]