-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 767 Bytes
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 767 Bytes
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
[build-system]
requires = ["setuptools >= 46.4.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pylint.basic]
good-names = [
"i",
"j",
"k",
"_",
"t",
"x",
"y",
"z",
"f",
"s",
"c",
"n",
"p",
"ax"
]
[tool.pylint.messages_control]
disable = [
"too-few-public-methods",
"too-many-public-methods",
"bad-continuation",
"wrong-import-position",
"line-too-long",
"locally-disabled",
"wildcard-import",
"locally-enabled",
"too-many-instance-attributes",
"fixme",
"missing-docstring",
"no-else-return",
"len-as-condition",
"logging-format-interpolation",
"logging-fstring-interpolation",
"duplicate-code"
]
[tool.pylint.design]
max-locals = 20