2023-06-27 09:50:13 +00:00
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
combine_as_imports = true
|
2023-11-23 13:53:10 +00:00
|
|
|
add_imports = ["from __future__ import annotations"]
|
2023-09-15 08:25:22 +00:00
|
|
|
|
|
|
|
[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",
|
2024-03-27 14:49:19 +00:00
|
|
|
"missing-module-docstring",
|
|
|
|
"missing-class-docstring",
|
|
|
|
"missing-function-docstring",
|
|
|
|
"duplicate-code",
|
|
|
|
"use-dict-literal",
|
2023-09-15 08:25:22 +00:00
|
|
|
]
|