-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
executable file
·32 lines (26 loc) · 985 Bytes
/
setup.cfg
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
[bumpversion]
current_version = 2.3.6
[flake8]
exclude = .old_work/*,docs/*,broker/_utils/colorer.py,webapp/ex.py
max-line-length = 120
ignore = W291,W293,W391,E501,E203,W503,E722,W605,E124,E231,NQA101,NQA102,F823
[tool:isort]
force_grid_wrap = 0
include_trailing_comma = True
known_standard_library = tkinter
known_first_party = brownie
known_third_party = PySimpleGUI,Tkinter,argcomplete,atomicwrites,base58,cid,config,consoledraw,daemon,daemons,eblocbroker,filelock,flask,gdown,git,halo,heft,hexbytes,ipdb,ipfshttpclient,matplotlib,multihash,networkx,owncloud,psutil,pygments,pymongo,pypandoc,pytest,pytz,quart,requests,rich,ruamel,setuptools,vulcano,web3,zc
line_length = 120
multi_line_output = 3
use_parentheses = True
[ipdb]
context = 19
[mypy]
exclude = docs/solidity_lexer.py
follow_imports = silent
ignore_missing_imports = True
disable_error_code = annotation-unchecked
[mypy-web3]
follow_imports = silent
[pydocstyle]
ignore = D100,D101,D102,D105,D107,D203,D213,D103