mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
add F405 to flake8 ignore list
This commit is contained in:
parent
cb54955485
commit
167544bcbe
1 changed files with 2 additions and 1 deletions
|
|
@ -9,6 +9,7 @@ min-version=2.7
|
|||
# - 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
|
||||
# - F405 object may be undefined, or defined from star imports
|
||||
# - C901: function/method complexity
|
||||
# `flake8-future-import` errors we ignore:
|
||||
# - FI50: `__future__` import "division" present
|
||||
|
|
@ -17,4 +18,4 @@ min-version=2.7
|
|||
# - 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
|
||||
ignore=C901,E241,E221,E731,F405,FI50,FI51,FI12,FI53,FI14,FI15
|
||||
|
|
|
|||
Loading…
Reference in a new issue