misc-csechet/.flake8

13 lines
195 B
Plaintext
Raw Permalink Normal View History

[flake8]
ignore =
# Line too long
E501
2022-03-30 02:19:02 +02:00
# at least two spaces before inline comment
E261
max-complexity = 10
2022-04-12 13:14:35 +02:00
max-line-length = 120
per-file-ignores =
# Imported but unused
__init__.py:F401