forked from OCR-D/ocrd_typegroups_classifier
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
32 lines (27 loc) · 739 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
[MASTER]
extension-pkg-whitelist=lxml,torch
ignored-modules=cv2,tesserocr,ocrd.model
[TYPECHECL]
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=numpy.*,torch.*
[MESSAGES CONTROL]
ignore-patterns='.*generateds.*'
disable =
inconsistent-return-statements,
ungrouped-imports,
bad-continuation,
too-many-instance-attributes,
useless-import-alias,
broad-except,
too-many-locals,
missing-docstring,
no-self-use,
fixme,
too-many-arguments,
superfluous-parens,
invalid-name,
line-too-long,
too-many-branches,
too-few-public-methods,