Skip to content

Commit

Permalink
lint: add pylintrc file
Browse files Browse the repository at this point in the history
  • Loading branch information
NARSimoes committed Apr 27, 2022
1 parent 3a8684d commit 20a370d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[MESSAGES CONTROL]
disable=
bad-option-value,
duplicate-code,
fixme,
import-outside-toplevel,
invalid-name,
len-as-condition,
locally-disabled,
missing-docstring,
no-else-raise,
no-else-return,
no-self-use,
raise-missing-from,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-function-args,
too-many-instance-attributes,
too-many-locals,
too-many-public-methods,
too-many-statements,
ungrouped-imports,
wrong-import-order,
wrong-import-position

[FORMAT]
max-line-length=125
max-module-lines=1100

[REPORTS]
output-format=text
reports=no

[TYPECHECK]
extension-pkg-whitelist=pydantic

0 comments on commit 20a370d

Please sign in to comment.