mopidy/setup.cfg
Stein Magnus Jodal b34bcd0f58 flake8: Ignore W504
It is ignored by default, but we must redefine the ignore since we
specify what warnings are ignored ourselves.
2018-12-02 00:23:23 +01:00

11 lines
242 B
INI

[flake8]
application-import-names = mopidy,tests
exclude = .git,.tox,build,js,tmp
# Ignored flake8 warnings:
# - E402 module level import not at top of file
# - W504 line break after binary operator
ignore = E402, W504
[wheel]
universal = 1