ansible-collection-hetzner-.../pyproject.toml
Jonas L 79f90b3881
chore: add dev config (#326)
##### SUMMARY

Add configuration files to simplify the dev setup for the project. This
will help IDEs to provide insight during development.

Pylint is already run by the ansible-test sanity checks.
2023-09-15 10:25:22 +02:00

27 lines
426 B
TOML

[tool.black]
line-length = 120
[tool.isort]
profile = "black"
combine_as_imports = true
[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",
]