lutris/.flake8

11 lines
325 B
Text
Raw Normal View History

[flake8]
ignore =
# <code>, # description
E722, # do not use bare except' (done by pylint)
W503, # line break before binary operator
E402, # module level import not at top of file (gtk stuff)
2020-04-26 12:21:38 +00:00
max-line-length = 120
exclude = .venv,venv,.env,env
max-complexity = 15
accept-encodings = utf-8