forked from nlef/moonraker-telegram-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (47 loc) · 998 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
[tool.pylint.master]
max-line-length = 200
ignore-imports = true
disable = [
"broad-except",
"c-extension-no-member",
"duplicate-code",
"fixme",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"no-else-return",
"no-member",
"too-few-public-methods",
"too-many-arguments",
"too-many-boolean-expressions",
"too-many-branches",
"too-many-instance-attributes",
"too-many-lines",
"too-many-locals",
"too-many-nested-blocks",
"too-many-public-methods",
"too-many-public-methods",
"too-many-statements",
"ungrouped-imports",
"wrong-import-order",
]
good-names = [
"ex",
"fh",
]
ignore-paths='tests'
[tool.black]
line-length = 200
[tool.isort]
profile = "black"
force_sort_within_sections = true
combine_as_imports = true
line_length = 200
known_first_party = [
"camera",
"configuration",
"klippy",
"notifications",
"power_device",
"timelapse",
]