2014-06-19 09:04:37 +02:00
|
|
|
# vim: ft=dosini fileencoding=utf-8:
|
|
|
|
|
2014-05-15 08:11:00 +02:00
|
|
|
[MASTER]
|
|
|
|
ignore=ez_setup.py
|
|
|
|
|
2014-04-16 11:05:58 +02:00
|
|
|
[MESSAGES CONTROL]
|
|
|
|
disable=no-self-use,
|
|
|
|
super-on-old-class,
|
|
|
|
old-style-class,
|
|
|
|
abstract-class-little-used,
|
|
|
|
bad-builtin,
|
|
|
|
star-args,
|
|
|
|
fixme,
|
|
|
|
global-statement,
|
|
|
|
no-init,
|
|
|
|
locally-disabled,
|
|
|
|
too-many-ancestors,
|
|
|
|
too-few-public-methods,
|
2014-04-28 00:05:14 +02:00
|
|
|
too-many-public-methods,
|
2014-04-29 08:38:01 +02:00
|
|
|
cyclic-import,
|
2014-05-18 08:16:53 +02:00
|
|
|
bad-option-value,
|
2014-05-19 04:10:56 +02:00
|
|
|
bad-continuation,
|
2014-06-17 07:19:16 +02:00
|
|
|
too-many-instance-attributes,
|
|
|
|
unnecessary-lambda
|
2014-04-16 11:05:58 +02:00
|
|
|
|
|
|
|
[BASIC]
|
|
|
|
module-rgx=[a-z_]*$
|
2014-06-02 18:47:02 +02:00
|
|
|
function-rgx=([a-z_][a-z0-9_]{2,30}|setUpModule|tearDownModule)$
|
2014-04-16 11:05:58 +02:00
|
|
|
const-rgx=[A-Za-z_][A-Za-z0-9_]{0,30}$
|
2014-05-21 17:29:09 +02:00
|
|
|
method-rgx=[a-z_][A-Za-z0-9_]{2,40}$
|
2014-04-16 11:05:58 +02:00
|
|
|
attr-rgx=[a-z_][a-z0-9_]{0,30}$
|
|
|
|
argument-rgx=[a-z_][a-z0-9_]{0,30}$
|
|
|
|
variable-rgx=[a-z_][a-z0-9_]{0,30}$
|
|
|
|
class-attribute-rgx=[A-Za-z_][A-Za-z0-9_]{1,30}$
|
|
|
|
inlinevar-rgx=[a-z_][a-z0-9_]*$
|
2014-05-13 07:10:50 +02:00
|
|
|
bad-names=foo,tmp
|
2014-04-16 11:05:58 +02:00
|
|
|
|
|
|
|
[FORMAT]
|
|
|
|
max-line-length=79
|
|
|
|
ignore-long-lines=<?https?://
|
|
|
|
|
2014-04-16 16:16:29 +02:00
|
|
|
[SIMILARITIES]
|
|
|
|
min-similarity-lines=6
|
|
|
|
|
2014-04-16 11:05:58 +02:00
|
|
|
[VARIABLES]
|
2014-04-22 17:53:27 +02:00
|
|
|
dummy-variables-rgx=_.*
|
2014-04-16 11:05:58 +02:00
|
|
|
|
|
|
|
[CLASSES]
|
|
|
|
defining-attr-methods=__init__,__new__,setUp
|
|
|
|
|
|
|
|
[DESIGN]
|
|
|
|
max-args=10
|