123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- [MASTER]
- load-plugins=pylint_quotes
- string-quote=double-avoid-escape
- suggestion-mode=yes
- ignore=tests
- [REFACTORING]
- max-nested-blocks=5
- [MESSAGES CONTROL]
- disable=C0326,C0411,C0412,C0413,R0201,R0401,R0801,R1710,W0221,W0511, C0111, C0303,C4001
- [FORMAT]
- max-line-length=120
- max-module-lines=500
- good-names=os
- [BASIC]
- module-rgx=[a-zA-Z0-9_]+$
- function-rgx=
- method-rgx=(_{,2}[a-z][A-Za-z0-9]*_{,2})$
- [DESIGN]
- max-args=7
- max-attributes=8
- max-bool-expr=5
- max-branches=12
- max-locals=15
- max-parents=7
- max-public-methods=20
- max-returns=6
- max-statements=50
- min-public-methods=0
- ignored-argument-names=arg|args|kwargs|_
- [CLASSES]
- defining-attr-methods=__init__,__new__,setUp,initialize
- [TYPECHECK]
- ignored-classes=NotImplemented
- [VARIABLES]
- dummy-variables-rgx=_+[a-z0-9_]{2,30}
|