2023-01-20 10:43:16 +00:00
|
|
|
[flake8]
|
2023-04-17 06:29:01 +00:00
|
|
|
max-line-length = 150
|
2023-04-13 05:57:14 +00:00
|
|
|
exclude = lnbits/wallets/lnd_grpc_files/, lnbits/extensions/
|
2023-01-20 10:43:16 +00:00
|
|
|
ignore =
|
2023-04-17 06:38:12 +00:00
|
|
|
# E203 whitespace before ':' black does not like it
|
|
|
|
E203
|
2023-01-20 10:43:16 +00:00
|
|
|
# E402: module level import not at top of file
|
|
|
|
E402,
|
|
|
|
# W503: line break before binary operator
|
|
|
|
W503,
|
2023-01-22 10:11:28 +00:00
|
|
|
# F821: undefined name - should be addressed in future PR
|
|
|
|
F821,
|
|
|
|
# E722 do not use bare 'except' - should be addressed in future PR
|
|
|
|
E722,
|
2023-01-20 10:43:16 +00:00
|
|
|
# flake8-requirements import checks
|
|
|
|
I
|