-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 922 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pylint]
max-line-length=127
max-public-methods=32
max-args=13
[tool.pylint."MESSAGES CONTROL"]
disable = '''
too-few-public-methods,
logging-fstring-interpolation,
too-many-instance-attributes,
no-else-return,
too-many-locals,
duplicate-code,
broad-except,
logging-not-lazy,
unspecified-encoding,
unused-wildcard-import,
missing-function-docstring,
missing-module-docstring,
missing-class-docstring,
import-error,
wildcard-import,
invalid-name,
redefined-outer-name,
no-name-in-module,
raise-missing-from,
arguments-differ,
'''
[tool.pylint.DESIGN]
max-args = 13
max-attributes = 7
max-bool-expr = 5
[tool.isort]
line_length=127
[tool.black]
line-length=127