2016-04-03 17:00:47 +00:00
|
|
|
[basic]
|
2016-04-22 17:37:58 +00:00
|
|
|
function-rgx=^_?[a-z_][a-z0-9_]{2,}$|^test_
|
|
|
|
method-rgx=^[a-z_][a-z0-9_]{2,}$|^test_
|
2016-08-14 10:35:14 +00:00
|
|
|
const-rgx=^[A-Z_]+$|^_[a-zA-Z_]*$
|
2016-05-08 17:41:35 +00:00
|
|
|
good-names=ex,_,logger
|
2016-04-03 17:00:47 +00:00
|
|
|
|
|
|
|
[variables]
|
|
|
|
dummy-variables-rgx=_|dummy
|
|
|
|
|
|
|
|
[format]
|
2016-08-14 12:22:53 +00:00
|
|
|
max-line-length=79
|
2016-04-03 17:00:47 +00:00
|
|
|
|
|
|
|
[messages control]
|
2016-05-10 09:57:24 +00:00
|
|
|
reports=no
|
2016-08-14 12:22:53 +00:00
|
|
|
disable=
|
|
|
|
# we're not java
|
|
|
|
missing-docstring,
|
|
|
|
|
|
|
|
# covered better by pycodestyle
|
|
|
|
bad-continuation,
|
|
|
|
|
|
|
|
# we're adults
|
|
|
|
redefined-builtin,
|
|
|
|
duplicate-code,
|
|
|
|
too-many-return-statements,
|
|
|
|
too-many-arguments,
|
|
|
|
|
|
|
|
# plain stupid
|
|
|
|
no-self-use,
|
|
|
|
too-few-public-methods
|
2016-04-03 17:00:47 +00:00
|
|
|
|
|
|
|
[typecheck]
|
|
|
|
generated-members=add|add_all
|
2016-05-10 09:55:36 +00:00
|
|
|
|
|
|
|
[similarities]
|
|
|
|
min-similarity-lines=5
|