-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.pylintrc
44 lines (38 loc) · 779 Bytes
/
.pylintrc
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
[MASTER]
ignore = .git,__pycache__,.pytest_cache,venv,.github
jobs = 4
extension-pkg-whitelist=pydantic
[FORMAT]
max-line-length = 120
max-branches=16
[DESIGN]
max-locals=28
[SIMILARITIES]
min-similarity-lines = 6
ignore-imports=yes
[TYPECHECK]
generated-members =
objects,
id,
context
[VARIABLES]
init-import = no
dummy-variables-rgx = _|__|dummy
[MESSAGES CONTROL]
disable =
missing-docstring,
raise-missing-from,
invalid-name,
too-few-public-methods,
too-many-ancestors,
unused-argument,
unused-import,
logging-fstring-interpolation,
import-outside-toplevel,
too-many-arguments,
redefined-builtin,
cyclic-import,
import-error,
not-callable,
too-many-instance-attributes,
used-before-assignment