forked from krahabb/meross_lan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (51 loc) · 1.73 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
################################################################################
[tool.black]
################################################################################
target-version = ["py310"]
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 = [
"bare-except",
"broad-except",
"global-statement",
"import-outside-toplevel",
"invalid-name",
"missing-class-docstring",
"missing-function-docstring",
]
# .vscode settings.json
# "--disable=missing-function-docstring",
# "--disable=missing-class-docstring",
# "--disable=invalid-name",
# "--disable=bare-except",
# "--disable=broad-except"
################################################################################
[tool.pytest.ini_options]
################################################################################
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"