server/general: improve pylint score

+ incorporate some in-house rules - no more useless doc strings...
This commit is contained in:
rr-
2016-04-03 19:00:47 +02:00
parent 9ce67b64ed
commit 2578a297bf
26 changed files with 211 additions and 223 deletions

14
server/.pylintrc Normal file
View File

@ -0,0 +1,14 @@
[basic]
method-rgx=[a-z_][a-z0-9_]{2,30}$|^test_
[variables]
dummy-variables-rgx=_|dummy
[format]
max-line-length=90
[messages control]
disable=missing-docstring,no-self-use,too-few-public-methods
[typecheck]
generated-members=add|add_all