debian-koji/.flake8
2020-03-03 21:38:22 +08:00

33 lines
674 B
INI
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[flake8]
select = E,F,W,C,I
ignore =
# too many leading # for block comment
E266,
# do not assign a lambda expression, use a def
E731,
# [PY2] list comprehension redefines `name` from line `N`
F812,
# line break after binary operator
W504
max_line_length = 99
exclude =
.git,
__pycache__,
tests,
docs,
./koji-*/*
filename =
*.py,
./cli/koji,
./builder/kojid,
./builder/mergerepos,
./hub/rpmdiff,
./util/kojira,
./util/koji-gc,
./util/koji-shadow,
./util/koji-sweep-db,
./vm/kojivmd
application_import_names = koji,koji_cli,kojihub,kojiweb,__main__
import_order_style = pep8