File: pyproject.toml

package info (click to toggle)
python-aiopyarr 23.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,300 kB
  • sloc: python: 25,335; makefile: 22; javascript: 11
file content (31 lines) | stat: -rw-r--r-- 607 bytes parent folder | download
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