forked from krahabb/meross_lan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (62 loc) · 1.89 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
66
################################################################################
[tool.black]
################################################################################
target-version = ["py311"]
extend-exclude = "/generated/"
################################################################################
[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 = [
"custom_components.meross_lan",
"tests",
]
forced_separate = [
"tests",
]
combine_as_imports = true
################################################################################
[tool.pylint."MESSAGES CONTROL"]
################################################################################
disable = [
"broad-except",
"broad-exception-raised",
"global-statement",
"import-outside-toplevel",
"invalid-name",
"missing-class-docstring",
"missing-function-docstring",
"protected-access",
]
################################################################################
[tool.pyright]
################################################################################
include = [
"custom_components",
"emulator",
"tests",
]
################################################################################
[tool.pytest.ini_options]
################################################################################
python_files = [
"test_*.py",
"profile_*.py",
]
python_functions = [
"test_*",
"profile_*",
]
testpaths = [
"tests",
]
norecursedirs = [
".git",
"testing_config",
]
log_format = "%(asctime)s.%(msecs)03d %(levelname)-8s %(threadName)s %(name)s:%(filename)s:%(lineno)s %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
asyncio_mode = "auto"