-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 818 Bytes
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
32
33
34
35
36
37
38
39
40
41
[tool.isort]
profile = "black"
combine_as_imports = true
add_imports = ["from __future__ import annotations"]
[tool.mypy]
strict = true
disallow_untyped_defs = true
implicit_reexport = false
[tool.coverage.run]
source = ["hcloud"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pylint.main]
py-version = "3.10"
recursive = true
jobs = 0
[tool.pylint.reports]
output-format = "colorized"
[tool.pylint."messages control"]
disable = [
"fixme",
"line-too-long",
"missing-class-docstring",
"missing-module-docstring",
"redefined-builtin",
"duplicate-code",
# Consider disabling line-by-line
"too-few-public-methods",
"too-many-public-methods",
"too-many-arguments",
"too-many-instance-attributes",
"too-many-lines",
"too-many-positional-arguments",
]