lbry-sdk/setup.cfg

33 lines
670 B
INI
Raw Normal View History

2018-05-25 08:03:25 +02:00
[coverage:run]
branch = True
[coverage:paths]
source =
torba
.tox/*/lib/python*/site-packages/torba
[mypy-twisted.*,cryptography.*,ecdsa.*,pbkdf2]
ignore_missing_imports = True
[pylint]
ignore=words
max-args=10
max-line-length=110
good-names=T,t,n,i,j,k,x,y,s,f,d,h,c,e,op,db,tx,io,cachedproperty,log,id
valid-metaclass-classmethod-first-arg=mcs
disable=
fixme,
no-else-return,
cyclic-import,
missing-docstring,
duplicate-code,
expression-not-assigned,
inconsistent-return-statements,
too-few-public-methods,
too-many-locals,
too-many-arguments,
too-many-public-methods,
too-many-instance-attributes,
2018-08-16 06:56:46 +02:00
protected-access,
unused-argument