ansible-collection-hetzner-.../pyproject.toml
Jonas L df8c3b6a59
refactor: add future annotations imports (#398)
##### SUMMARY

This adds future annotations imports to benefit from the modern python
typing system.
2023-11-23 14:53:10 +01:00

28 lines
479 B
TOML

[tool.black]
line-length = 120
[tool.isort]
profile = "black"
combine_as_imports = true
add_imports = ["from __future__ import annotations"]
[tool.pylint.main]
py-version = "3.8"
recursive = true
jobs = 0
max-line-length = 120
ignore-paths = [
"plugins/module_utils/vendor",
]
[tool.pylint.reports]
output-format = "colorized"
[tool.pylint.basic]
good-names = ["i", "j", "k", "ex", "_", "ip", "id"]
[tool.pylint.messages_control]
disable = [
"wrong-import-position",
]