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,
|
2014-06-23 19:44:21 +02:00
|
|
|
unnecessary-lambda,
|
2014-08-05 21:09:55 +02:00
|
|
|
blacklisted-name,
|
|
|
|
too-many-lines
|
2014-04-16 11:05:58 +02:00
|
|
|
|
|
|
|
[BASIC]
|
2014-06-19 09:05:03 +02:00
|
|
|
module-rgx=(__)?[a-z][a-z0-9_]*(__)?$
|
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_]*$
|
|
|
|
|
|
|
|
[FORMAT]
|
|
|
|
max-line-length=79
|
|
|
|
ignore-long-lines=<?https?://
|
|
|
|
|
2014-04-16 16:16:29 +02:00
|
|
|
[SIMILARITIES]
|
2014-08-07 14:37:35 +02:00
|
|
|
min-similarity-lines=8
|
2014-04-16 16:16:29 +02:00
|
|
|
|
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
|
2014-09-04 08:00:05 +02:00
|
|
|
|
|
|
|
[TYPECHECK]
|
2014-09-15 22:01:13 +02:00
|
|
|
ignored-classes=WebElementWrapper,AnsiCodes
|