summaryrefslogtreecommitdiffstats
path: root/ansible_collections/hetzner/hcloud/pyproject.toml
blob: 8047f107f3ed9b522f45565e2f553adb26328750 (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
29
30
31
32
33
[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",
  "missing-module-docstring",
  "missing-class-docstring",
  "missing-function-docstring",
  "duplicate-code",
  "use-dict-literal",
]