123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 |
- [MASTER]
- ignore=CVS,setup.py
- persistent=no
- load-plugins=
- jobs=0
- unsafe-load-any-extension=no
- extension-pkg-whitelist=
- optimize-ast=no
- [MESSAGES CONTROL]
- confidence=
- disable=fixme,locally-disabled,file-ignored,duplicate-code
- [REPORTS]
- output-format=parseable
- files-output=no
- reports=no
- evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
- [SIMILARITIES]
- min-similarity-lines=4
- ignore-comments=yes
- ignore-docstrings=yes
- ignore-imports=yes
- [BASIC]
- bad-functions=map,filter,input
- good-names=i,j,k,ex,Run,_
- bad-names=foo,bar,baz,toto,tutu,tata
- name-group=
- include-naming-hint=no
- function-rgx=[a-z_][a-z0-9_]{2,30}$
- function-name-hint=[a-z_][a-z0-9_]{2,30}$
- variable-rgx=[a-z_][a-z0-9_]{2,30}$
- variable-name-hint=[a-z_][a-z0-9_]{2,30}$
- const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
- const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
- attr-rgx=[a-z_][a-z0-9_]{2,30}$
- attr-name-hint=[a-z_][a-z0-9_]{2,30}$
- argument-rgx=[a-z_][a-z0-9_]{2,30}$
- 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
- [ELIF]
- max-nested-blocks=5
- [MISCELLANEOUS]
- notes=FIXME,XXX,TODO
- [TYPECHECK]
- ignore-mixin-members=yes
- ignored-modules=ansible.constants,distutils
- ignored-classes=
- generated-members=
- [SPELLING]
- spelling-dict=
- spelling-ignore-words=
- spelling-private-dict-file=
- spelling-store-unknown-words=no
- [FORMAT]
- max-line-length=120
- ignore-long-lines=^\s*(# )?<?https?://\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=
- [VARIABLES]
- init-import=no
- dummy-variables-rgx=_$|dummy
- additional-builtins=
- callbacks=cb_,_cb
- [LOGGING]
- logging-modules=logging
- [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=20
- max-returns=6
- max-branches=12
- max-statements=50
- max-parents=7
- max-attributes=7
- min-public-methods=2
- max-public-methods=20
- max-bool-expr=5
- [IMPORTS]
- deprecated-modules=regsub,TERMIOS,Bastion,rexec
- import-graph=
- ext-import-graph=
- int-import-graph=
- [EXCEPTIONS]
- overgeneral-exceptions=Exception
|