mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
df8c3b6a59
##### SUMMARY This adds future annotations imports to benefit from the modern python typing system.
28 lines
479 B
TOML
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",
|
|
]
|