2024-07-12 09:04:00 +02:00
|
|
|
# Black
|
2023-10-21 09:10:56 +02:00
|
|
|
[tool.black]
|
|
|
|
line-length = 79
|
|
|
|
target-version = ['py310']
|
2024-07-12 08:36:38 +02:00
|
|
|
preview = true
|
2023-10-21 09:10:56 +02:00
|
|
|
|
2024-07-12 09:04:00 +02:00
|
|
|
# Mypy
|
2023-10-21 09:10:56 +02:00
|
|
|
[tool.mypy]
|
2024-07-12 07:51:36 +02:00
|
|
|
python_version = '3.10'
|
2023-10-21 09:10:56 +02:00
|
|
|
|
2024-07-12 09:04:00 +02:00
|
|
|
# Pylint
|
|
|
|
[tool.pylint.main]
|
|
|
|
py-version = "3.10"
|
|
|
|
jobs = 0
|
|
|
|
|
|
|
|
[tool.pylint.basic]
|
|
|
|
include-naming-hint = true
|
2023-10-21 09:10:56 +02:00
|
|
|
|
2024-07-12 08:36:38 +02:00
|
|
|
[tool.pylint.format]
|
|
|
|
max-line-length = 79
|
2023-10-21 09:10:56 +02:00
|
|
|
|
2024-07-12 09:04:00 +02:00
|
|
|
[tool.pylint."messages control"]
|
|
|
|
# Disables warnings about TODO
|
|
|
|
disable = ["W0511"]
|
|
|
|
|
|
|
|
#[tool.pylint.variables]
|
|
|
|
#ignored-argument-names = "_.*|^ignored_|^unused_"
|
|
|
|
|
|
|
|
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html
|
2023-10-21 09:10:56 +02:00
|
|
|
|
2024-07-12 09:14:44 +02:00
|
|
|
# isort
|
2024-07-12 09:04:00 +02:00
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|