1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-03 23:51:48 +00:00
hetzner.hcloud/pyproject.toml
Jonas L. cfa0d181f7
refactor: mark module_utils modules as private (#782)
##### SUMMARY

All `module_utils` are now marked as **private**. None of the modules
were intended for public use.

Similar to
https://togithub.com/ansible-collections/community.general/issues/11312
2026-01-06 08:43:46 +01:00

33 lines
614 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.10"
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",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"duplicate-code",
"use-dict-literal",
]