mirror of
https://github.com/ansible-collections/hetzner.hcloud.git
synced 2026-02-04 08:01:49 +00:00
##### 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
33 lines
614 B
TOML
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",
|
|
]
|