-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (49 loc) · 1011 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.pylint]
# Use multiple processes to speed up Pylint.
jobs = 4
ignore-patterns = [
".*.json",
".*.pth",
".*.core",
".*.sh",
".*.log",
".*.txt",
".*.npy",
".*.png",
".*.csv",
]
max-line-length = 100
disable = [
"import-error",
"missing-module-docstring",
"invalid-name",
"missing-function-docstring",
"redefined-outer-name",
"missing-class-docstring",
"too-many-locals",
"too-few-public-methods",
"unused-import",
"pointless-string-statement",
"too-many-statements",
"too-many-arguments",
"no-name-in-module",
"fixme",
"too-many-branches",
"multiple-imports",
"duplicate-code",
"inconsistent-return-statements",
"consider-using-min-builtin",
"too-many-instance-attributes",
"consider-using-f-string",
"no-else-return",
"no-else-raise",
"unspecified-encoding",
"broad-except",
"redefined-builtin",
"trailing-newlines",
"dangerous-default-value",
"too-many-lines",
"broad-exception-raised",
]
reports = false
score = false