mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 09:04:33 +01:00
I'm adding this both as a TODO item and to work around flake8 preferring global ($HOME) configuration over project
20 lines
781 B
INI
20 lines
781 B
INI
[nosetests]
|
|
verbosity=1
|
|
logging-clear-handlers=1
|
|
eval-attr="!=slow"
|
|
|
|
[flake8]
|
|
min-version=2.7
|
|
# Default pyflakes errors we ignore:
|
|
# - E241: missing whitespace after ',' (used to align visually)
|
|
# - E221: multiple spaces before operator (used to align visually)
|
|
# - E731: do not assign a lambda expression, use a def
|
|
# - C901: function/method complexity
|
|
# `flake8-future-import` errors we ignore:
|
|
# - FI50: `__future__` import "division" present
|
|
# - FI51: `__future__` import "absolute_import" present
|
|
# - FI12: `__future__` import "with_statement" missing
|
|
# - FI53: `__future__` import "print_function" present
|
|
# - FI14: `__future__` import "unicode_literals" missing
|
|
# - FI15: `__future__` import "generator_stop" missing
|
|
ignore=C901,E241,E221,E731,FI50,FI51,FI12,FI53,FI14,FI15
|