2018-05-25 08:03:25 +02:00
|
|
|
[coverage:run]
|
|
|
|
branch = True
|
|
|
|
|
2020-06-07 02:54:34 +02:00
|
|
|
#[coverage:paths]
|
|
|
|
#source =
|
|
|
|
# lbry
|
|
|
|
# .tox/*/lib/python*/site-packages/lbry
|
2018-07-29 02:52:54 +02:00
|
|
|
|
2018-11-04 00:45:28 +01:00
|
|
|
[cryptography.*,coincurve.*,pbkdf2]
|
2018-07-29 02:52:54 +02:00
|
|
|
ignore_missing_imports = True
|
|
|
|
|
|
|
|
[pylint]
|
2020-01-03 08:05:16 +01:00
|
|
|
jobs=8
|
2020-06-05 06:35:22 +02:00
|
|
|
ignore=words,schema,migrator,extras,ui,api.py
|
2019-10-13 01:40:32 +02:00
|
|
|
max-parents=10
|
2018-07-29 02:52:54 +02:00
|
|
|
max-args=10
|
2019-12-31 21:01:14 +01:00
|
|
|
max-line-length=120
|
2020-06-05 06:35:22 +02:00
|
|
|
good-names=T,t,n,i,j,k,x,y,s,f,d,h,c,e,op,db,tx,io,cachedproperty,log,id,r,iv,ts,l,it,fp,q,p
|
2018-07-29 02:52:54 +02:00
|
|
|
valid-metaclass-classmethod-first-arg=mcs
|
|
|
|
disable=
|
|
|
|
fixme,
|
2018-11-04 00:45:28 +01:00
|
|
|
broad-except,
|
2018-07-29 02:52:54 +02:00
|
|
|
no-else-return,
|
|
|
|
cyclic-import,
|
|
|
|
missing-docstring,
|
|
|
|
duplicate-code,
|
2020-06-05 06:35:22 +02:00
|
|
|
blacklisted-name,
|
2018-07-29 02:52:54 +02:00
|
|
|
expression-not-assigned,
|
|
|
|
inconsistent-return-statements,
|
2020-06-05 06:35:22 +02:00
|
|
|
trailing-comma-tuple,
|
2018-07-29 02:52:54 +02:00
|
|
|
too-few-public-methods,
|
2020-01-03 07:15:33 +01:00
|
|
|
too-many-lines,
|
2018-07-29 02:52:54 +02:00
|
|
|
too-many-locals,
|
2018-10-03 15:36:31 +02:00
|
|
|
too-many-branches,
|
2020-06-05 06:35:22 +02:00
|
|
|
too-many-ancestors,
|
2018-07-29 02:52:54 +02:00
|
|
|
too-many-arguments,
|
2019-05-06 23:34:13 +02:00
|
|
|
too-many-statements,
|
2020-02-12 16:47:40 +01:00
|
|
|
too-many-nested-blocks,
|
2018-07-29 02:52:54 +02:00
|
|
|
too-many-public-methods,
|
2020-06-05 06:35:22 +02:00
|
|
|
too-many-return-statements,
|
2018-07-29 02:52:54 +02:00
|
|
|
too-many-instance-attributes,
|
2018-08-16 06:56:46 +02:00
|
|
|
protected-access,
|
|
|
|
unused-argument
|