123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- [MASTER]
- ignore=compat.py, __main__.py
- persistent=yes
- load-plugins=
- jobs=1
- unsafe-load-any-extension=no
- extension-pkg-whitelist=
- optimize-ast=no
- [MESSAGES CONTROL]
- confidence=
- disable=W0107,W0201,R0913,R0902,E0401,C0103,E0611,R0914,W0613,E1101
- [REPORTS]
- output-format=text
- files-output=no
- reports=no
- evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
- [BASIC]
- bad-functions=apply,reduce
- good-names=e,i,j,k,n,ex,Run,_
- bad-names=foo,bar,baz,toto,tutu,tata
- name-group=
- include-naming-hint=yes
- function-rgx=[a-z_][a-z0-9_]{2,50}$
- function-name-hint=[a-z_][a-z0-9_]{2,30}$
- variable-rgx=[a-z_][a-z0-9_]{0,50}$
- variable-name-hint=[a-z_][a-z0-9_]{2,30}$
- const-rgx=(([a-zA-Z_][a-zA-Z0-9_]*)|(__.*__))$
- const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
- attr-rgx=[a-z_][a-z0-9_]{1,50}$
- attr-name-hint=[a-z_][a-z0-9_]{2,30}$
- argument-rgx=[a-z_][a-z0-9_]{0,50}$
- argument-name-hint=[a-z_][a-z0-9_]{2,30}$
- class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
- class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
- inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
- inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
- class-rgx=[A-Z_][a-zA-Z0-9]+$
- class-name-hint=[A-Z_][a-zA-Z0-9]+$
- module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
- module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
- method-rgx=[a-z_][a-z0-9_]{2,30}$
- method-name-hint=[a-z_][a-z0-9_]{2,30}$
- no-docstring-rgx=.*
- docstring-min-length=-1
- [FORMAT]
- max-line-length=190
- ignore-long-lines=^\s*(
- single-line-if-stmt=no
- no-space-check=trailing-comma,dict-separator
- max-module-lines=1000
- indent-string=' '
- indent-after-paren=4
- expected-line-ending-format=
- [LOGGING]
- logging-modules=logging
- [MISCELLANEOUS]
- notes=FIXME,XXX
- [SIMILARITIES]
- min-similarity-lines=500
- ignore-comments=yes
- ignore-docstrings=yes
- ignore-imports=yes
- [SPELLING]
- spelling-dict=
- spelling-ignore-words=
- spelling-private-dict-file=
- spelling-store-unknown-words=no
- [TYPECHECK]
- ignore-mixin-members=yes
- ignored-modules=six.moves,
- ignored-classes=SQLObject
- generated-members=REQUEST,acl_users,aq_parent,objects,DoesNotExist,md5,sha1,sha224,sha256,sha384,sha512
- [VARIABLES]
- init-import=no
- dummy-variables-rgx=_|dummy|ignore
- additional-builtins=
- callbacks=cb_,_cb
- [CLASSES]
- defining-attr-methods=__init__,__new__,setUp
- valid-classmethod-first-arg=cls
- valid-metaclass-classmethod-first-arg=mcs
- exclude-protected=_asdict,_fields,_replace,_source,_make
- [DESIGN]
- max-args=5
- ignored-argument-names=_.*
- max-locals=15
- max-returns=6
- max-branches=12
- max-statements=35
- max-parents=6
- max-attributes=7
- min-public-methods=0
- max-public-methods=20
- [IMPORTS]
- deprecated-modules=regsub,TERMIOS,Bastion,rexec,UserDict
- import-graph=
- ext-import-graph=
- int-import-graph=
- [EXCEPTIONS]
- overgeneral-exceptions=Exception
|