scripts/pyproject.toml

34 lines
558 B
TOML
Raw Normal View History

# Black
[tool.black]
line-length = 79
target-version = ['py310']
2024-07-12 08:36:38 +02:00
preview = true
# Mypy
[tool.mypy]
2024-07-12 07:51:36 +02:00
python_version = '3.10'
# Pylint
[tool.pylint.main]
py-version = "3.10"
jobs = 0
[tool.pylint.basic]
include-naming-hint = true
2024-07-12 08:36:38 +02:00
[tool.pylint.format]
max-line-length = 79
[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
2024-07-12 09:14:44 +02:00
# isort
[tool.isort]
profile = "black"