1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 19:39:05 +00:00
trezor-firmware/.flake8

23 lines
396 B
Plaintext
Raw Normal View History

2017-06-23 19:31:42 +00:00
[flake8]
2017-07-03 15:45:56 +00:00
filename =
*.py,
./trezorctl
2017-06-23 19:31:42 +00:00
exclude =
.tox/,
build/,
dist/,
vendor/,
2017-06-23 19:31:42 +00:00
ignore =
# F401: module imported but unused
F401,
2017-07-03 15:45:56 +00:00
# E241: multiple spaces after ':'
E241,
2017-06-23 19:31:42 +00:00
# E402: module level import not at top of file
E402,
# E501: line too long
E501,
2017-10-23 23:00:08 +00:00
# E722: do not use bare except
E722,
# E741: ambiguous variable name
E741