move flake config from setup.cfg to .flake8, to not confuse it with setup.cfg python package settings

This commit is contained in:
dni ⚡
2023-04-17 08:08:16 +02:00
parent d82118db20
commit 45b36b896b
+28
View File
@@ -0,0 +1,28 @@
[flake8]
max-line-length = 300
exclude = lnbits/wallets/lnd_grpc_files/, lnbits/extensions/
ignore =
# E203 whitespace before ':'
E203,
# E221: multiple spaces before operator
E221,
# E241: multiple spaces after ':'
E241,
# E402: module level import not at top of file
E402,
# E501: line too long
E501,
# E741 ambiguous variable name
E741,
# W503: line break before binary operator
W503,
# F821: undefined name - should be addressed in future PR
F821,
# E265 block comment should start with '# ' - should be addressed in future PR
E265,
# E266 too many leading '#' for block comment - should be addressed in future PR
E266,
# E722 do not use bare 'except' - should be addressed in future PR
E722,
# flake8-requirements import checks
I