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
|
[flake8]
filename = *.py
exclude =
.tox/,
build/,
dist/,
vendor/,
src/trezorlib/messages/__init__.py
ignore =
E203,
E221,
E241,
E402,
E501,
E704,
E741,
W503,
ANN,
per-file-ignores =
helper-scripts/*:I
tools/*:I
tests/*:I
known-modules = libusb1:[usb1],hidapi:[hid],PyQt5:[PyQt5.QtWidgets,PyQt5.QtGui,PyQt5.QtCore]
[isort]
profile = black
[mypy]
check_untyped_defs = True
show_error_codes = True
warn_unreachable = True
disable_error_code = import
[egg_info]
tag_build =
tag_date = 0
|