2021-05-27 12:00:13 +00:00
|
|
|
[tool.black]
|
|
|
|
line-length = 100
|
|
|
|
exclude = '''
|
|
|
|
(
|
|
|
|
/(
|
|
|
|
\.eggs # exclude a few common directories in the
|
|
|
|
| \.git # root of the project
|
|
|
|
| \.hg
|
|
|
|
| \.mypy_cache
|
|
|
|
| \.tox
|
|
|
|
| \.venv
|
|
|
|
| _build
|
|
|
|
| buck-out
|
|
|
|
| build
|
|
|
|
| dist
|
|
|
|
)/
|
|
|
|
# Exclude vendor directory
|
|
|
|
| vendor
|
|
|
|
)
|
|
|
|
'''
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
line_length = 100
|
2021-05-27 12:25:29 +00:00
|
|
|
multi_line_output=0
|
|
|
|
lines_after_imports=2
|
2022-04-29 09:54:54 +00:00
|
|
|
skip_glob = ["**/.env*", "**/env/*", "**/.venv/*", "**/docs/*", "**/user_data/*"]
|
2021-05-27 12:00:13 +00:00
|
|
|
|
2022-01-17 19:02:59 +00:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
asyncio_mode = "auto"
|
|
|
|
|
2022-05-07 09:30:45 +00:00
|
|
|
[tool.mypy]
|
|
|
|
ignore_missing_imports = true
|
2022-11-14 19:52:40 +00:00
|
|
|
namespace_packages = false
|
2022-05-07 09:30:45 +00:00
|
|
|
warn_unused_ignores = true
|
|
|
|
exclude = [
|
|
|
|
'^build_helpers\.py$'
|
|
|
|
]
|
2023-02-14 10:05:04 +00:00
|
|
|
plugins = [
|
|
|
|
"sqlalchemy.ext.mypy.plugin"
|
|
|
|
]
|
2022-05-07 09:30:45 +00:00
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = "tests.*"
|
|
|
|
ignore_errors = true
|
|
|
|
|
2023-01-21 19:00:45 +00:00
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
# Telegram does not use implicit_optional = false in the current version.
|
|
|
|
module = "telegram.*"
|
|
|
|
implicit_optional = true
|
|
|
|
|
2021-05-27 12:00:13 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools >= 46.4.0", "wheel"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
2022-05-25 10:13:37 +00:00
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
include = ["freqtrade"]
|
|
|
|
exclude = [
|
|
|
|
"**/__pycache__",
|
|
|
|
"build_helpers/*.py",
|
|
|
|
]
|
|
|
|
ignore = ["freqtrade/vendor/**"]
|
2023-02-22 20:06:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
line-length = 100
|
|
|
|
extend-exclude = [".env"]
|
2023-02-25 19:50:26 +00:00
|
|
|
target-version = "py38"
|
2023-02-22 20:06:07 +00:00
|
|
|
extend-select = [
|
2023-02-25 19:50:26 +00:00
|
|
|
"C90", # mccabe
|
|
|
|
# "N", # pep8-naming
|
|
|
|
# "UP", # pyupgrade
|
2023-02-23 06:12:54 +00:00
|
|
|
"TID", # flake8-tidy-imports
|
|
|
|
# "EXE", # flake8-executable
|
|
|
|
"YTT", # flake8-2020
|
|
|
|
# "DTZ", # flake8-datetimez
|
|
|
|
# "RSE", # flake8-raise
|
|
|
|
# "TCH", # flake8-type-checking
|
2023-02-25 16:17:05 +00:00
|
|
|
"PTH", # flake8-use-pathlib
|
2023-02-22 20:06:07 +00:00
|
|
|
]
|
2023-02-25 19:50:26 +00:00
|
|
|
|
|
|
|
[tool.ruff.mccabe]
|
|
|
|
max-complexity = 12
|