add flake8 and pylint as dev dependencies

This commit is contained in:
Pavol Rusnak
2023-01-30 11:46:43 +00:00
parent 52e654af86
commit c8efe41e1a
4 changed files with 318 additions and 8 deletions
+20
View File
@@ -0,0 +1,20 @@
[flake8]
max-line-length = 300
exclude = lnbits/wallets/lnd_grpc_files/
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,
# flake8-requirements import checks
I