-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 927 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
[tool.pylint.messages_control]
disable = [
"missing-function-docstring",
"missing-final-newline",
"missing-class-docstring",
"missing-module-docstring",
"invalid-name",
"too-few-public-methods",
"line-too-long",
"missing-timeout",
"import-error",
"consider-using-f-string",
"no-value-for-parameter",
"unused-variable",
"redefined-outer-name",
"bare-except",
"arguments-differ",
"fixme",
"unused-import",
"no-name-in-module",
"unspecified-encoding",
"unused-argument",
"unspecified-encoding",
"wrong-import-order",
"broad-except","duplicate-code","ungrouped-imports","comparison-of-constants","comparison-with-itself","unused-private-member","useless-parent-delegation","no-else-return"
]
[tool.black]
line-length = 88
target-version = ['py39']
skip-string-normalization = true
[tool.isort]
multi_line_output = 3
length_sort = true