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
|
[tool.pylint.MASTER]
py-version = "3.10"
load-plugins = [
"pylint.extensions.code_style",
"pylint.extensions.typing",
]
extension-pkg-allow-list = [
"ciso8601",
"orjson",
]
[tool.pylint."MESSAGES CONTROL"]
# Reasons disabled:
# duplicate-code - unavoidable
disable = [
"duplicate-code",
]
[tool.isort]
# https://github.com/PyCQA/isort/wiki/isort-Settings
profile = "black"
# will group `import x` and `from x import` of the same module.
force_sort_within_sections = true
known_first_party = [
"aiopyarr",
"tests",
]
forced_separate = [
"tests",
]
combine_as_imports = true
|