summaryrefslogtreecommitdiffstats
path: root/ansible_collections/hetzner/hcloud/pyproject.toml
blob: 5263580cb698773520a5fdc72628d8f22743b130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[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",
]