mirror of
https://github.com/lutris/lutris
synced 2024-11-02 08:20:51 +00:00
11 lines
325 B
Text
11 lines
325 B
Text
|
[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)
|
||
|
max-line-length = 100
|
||
|
exclude = .venv,venv,.env,env
|
||
|
max-complexity = 15
|
||
|
accept-encodings = utf-8
|