szurubooru/server/.pylintrc
rr- af62f8c45a server/general: ditch falcon for in-house WSGI app
For quite some time, I hated Falcon's class maps approach that caused
more chaos than good for Szurubooru. I've taken a look at the other
frameworks (hug, flask, etc) again, but they all looked too
bloated/over-engineered. I decided to just talk to WSGI myself.

Regex-based routing may not be the fastest in the world, but I'm fine
with response time of 10 ms for cached /posts.
2016-08-14 16:43:35 +02:00

21 lines
413 B
INI

[basic]
function-rgx=^_?[a-z_][a-z0-9_]{2,}$|^test_
method-rgx=^[a-z_][a-z0-9_]{2,}$|^test_
const-rgx=^[A-Z_]+$|^_[a-zA-Z_]*$
good-names=ex,_,logger
[variables]
dummy-variables-rgx=_|dummy
[format]
max-line-length=90
[messages control]
disable=missing-docstring,no-self-use,too-few-public-methods,multiple-statements
reports=no
[typecheck]
generated-members=add|add_all
[similarities]
min-similarity-lines=5