Files
picard/setup.cfg
Wieland Hoffmann db9072bcaa Add setup.cfg to ignore flake8 errors
This ignores E501 (line too long), some indentation related errors and
configures gettext functions as known builtins, which makes the error
list for most files very short.

Messages in the generated UI files are ignored as well.

This reduces the number of warnings from ~2300 to ~200.
2016-11-20 12:50:04 +01:00

10 lines
382 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]
# E127: continuation line over-indented for visual indent
# E128: continuation line under-indented for visual indent
# E265: block comment should start with #
# E402: module level import not at top of file
# E501: line too long (xx > 79 characters)
ignore = E127,E128,E265,E402,E501
builtins = _,N_,ungettext,ugettext_attributes,ugettext_countries
exclude = ui_*.py