-
Notifications
You must be signed in to change notification settings - Fork 66
/
pyproject.toml
65 lines (59 loc) · 1.58 KB
/
pyproject.toml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.black]
exclude = 'api_pb2.py|api_options_pb2.py'
target-version = ['py39']
[tool.pylint.MASTER]
reports = 'no'
ignore = [
"api_pb2.py",
"api_options_pb2.py"
]
disable = [
"missing-docstring",
"too-few-public-methods",
"too-many-instance-attributes",
"wildcard-import",
"invalid-name",
"too-many-arguments",
"line-too-long",
"protected-access",
"unused-wildcard-import",
"import-outside-toplevel",
"raise-missing-from",
"bad-mcs-classmethod-argument",
"duplicate-code",
"too-many-lines",
"too-many-positional-arguments"
]
[tool.ruff]
required-version = ">=0.5.0"
exclude = [
"aioesphomeapi/api_pb2.py",
"aioesphomeapi/api_options_pb2.py",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes/autoflake
"I", # isort
"PL", # pylint
"UP", # pyupgrade
]
ignore = [
"E501", # line too long
"E721", # We want type() check for protobuf messages
"PLR0911", # Too many return statements ({returns} > {max_returns})
"PLR0912", # Too many branches ({branches} > {max_branches})
"PLR0913", # Too many arguments to function call ({c_args} > {max_args})
"PLR0915", # Too many statements ({statements} > {max_statements})
"PLR2004", # Magic value used in comparison, consider replacing {value} with a constant variable
"PLW2901", # Outer {outer_kind} variable {name} overwritten by inner {inner_kind} target
]
[tool.ruff.lint.isort]
force-sort-within-sections = true
known-first-party = [
"aioesphomeapi",
]
combine-as-imports = true
split-on-trailing-comma = false
[build-system]
requires = ['setuptools>=65.4.1', 'wheel', 'Cython>=3.0.2']