-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
57 lines (52 loc) · 1005 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
[tool.black]
line_length = 88
[tool.flake8]
max-line-length = 99
select = "F,E,W,B,B901,B902,B903"
exclude = [
".eggs",
".git",
".tox",
"nssm",
"obj",
"out",
"packages",
"pywin32",
"tests",
"swagger_client"
]
ignore = [
"E722",
"B001",
"W503",
"E203",
"E402"
]
[tool.isort]
multi_line_output = 3
line_length = 99
include_trailing_comma = true
[tool.pylint.'FORMAT']
max-line-length=99
[tool.pylint.'MESSAGES CONTROL']
disable= [
"bare-except",
"broad-except",
"consider-using-with",
"consider-using-generator",
"duplicate-code",
"import-outside-toplevel",
"invalid-name",
"import-error",
"too-few-public-methods",
"too-many-arguments",
"too-many-branches",
"too-many-instance-attributes",
"unspecified-encoding",
"wrong-import-position",
]
[tool.pyright]
reportOptionalMemberAccess = false
reportGeneralTypeIssues = false
reportOptionalSubscript = false
reportUnboundVariable = false