-
Notifications
You must be signed in to change notification settings - Fork 21
/
.pylintrc
41 lines (29 loc) · 1014 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[MASTER]
ignore-patterns=.*_pb2.py,contract_dispatcher.py,test_abci_messages.py,test_tendermint_messages.py
ignore=packages/valory/protocols,packages/valory/connections
[MESSAGES CONTROL]
disable=C0103,R0801,C0301,C0201,C0204,C0209,W1203,C0302,R1735,R1729,W0511
[IMPORTS]
ignored-modules=pandas,numpy,aea_cli_ipfs,compose,multidict,os,toml,abc
[DESIGN]
max-public-methods=58
max-args=6
max-parents=10
max-branches=36
max-attributes=8
[REFACTORING]
# max-nested-blocks=6
[SPELLING]
# uncomment to enable
# spelling-dict=en_US
# List of comma separated words that should not be checked.
spelling-ignore-words=nocover,pragma,params,noqa,kwargs,str,async,json,boolean,config,pytest,args,url,tx,jsonschema,traceback,api,nosec
[SIMILARITIES]
# Minimum lines number of a similarity.
min-similarity-lines=10
# Ignore comments when computing similarities.
ignore-comments=yes
# Ignore docstrings when computing similarities.
ignore-docstrings=yes
# Ignore imports when computing similarities.
ignore-imports=no