-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
58 lines (50 loc) · 935 Bytes
/
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
[tool.black]
target-version = ["py39"]
[tool.isort]
# https://github.com/PyCQA/isort/wiki/isort-Settings
profile = "black"
# will group `import x` and `from x import` of the same module.
combine_as_imports = true
force_sort_within_sections = true
forced_separate = [
"tests",
]
known_first_party = [
"hassapi",
"appdaemon",
]
[tool.pylint.MASTER]
jobs = 4
load-plugins = [
"pylint.extensions.code_style",
"pylint.extensions.typing",
]
persistent = false
[tool.pylint."MESSAGES CONTROL"]
disable = [
"attribute-defined-outside-init",
"import-outside-toplevel",
"wrong-import-position",
]
[tool.pylint.BASIC]
class-const-naming-style = "any"
good-names = [
"_",
"ev",
"ex",
"fp",
"i",
"id",
"j",
"k",
"Run",
"T",
]
[tool.pylint.REPORTS]
score = true
[tool.pylint.TYPECHECK]
[tool.pylint.FORMAT]
expected-line-ending-format = "LF"
[tool.pylint.TYPING]
py-version = "3.9"
runtime-typing = false