openlp/setup.cfg

26 lines
558 B
INI

# E402 module level import not at top of file
# E722 do not use bare except, specify exception instead
# F841 local variable '<variable>' is assigned to but never used
[aliases]
test=pytest
[pep8]
exclude=resources.py,vlc.py
max-line-length = 120
ignore = E402,E722,W503,W504
[flake8]
exclude=resources.py,vlc.py
max-line-length = 120
ignore = E402,W503,W504,D
[pycodestyle]
exclude = resources.py,vlc.py
max-line-length = 120
# Ignoring:
# E402...
# W503 line break before binary operator
# W504 line break after binary operator
ignore = E402,W503,W504