Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

Commit

Permalink
🎨 add pylintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed Nov 22, 2018
1 parent ea0ab1a commit 28209da
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[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,

0 comments on commit 28209da

Please sign in to comment.