ansible-collection-hetzner-.../pyproject.toml
Jonas L 0d7164a9f6
chore: disable out of scope pylint rules (#478)
##### SUMMARY

Disable some pylint rules that are out of scope for the time being, to
stop polluting the pylint errors report. Those might be re-enabled at a
later stage.
2024-03-27 15:49:19 +01:00

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