openlp/setup.cfg

33 lines
718 B
INI
Raw Normal View History

2017-06-25 02:21:07 +00:00
# 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
2019-05-25 14:43:43 +00:00
[aliases]
test=pytest
2014-05-21 19:57:06 +00:00
[pep8]
exclude=resources.py,vlc.py
max-line-length = 120
ignore = E402,E722,W503,W504
2017-06-25 02:21:07 +00:00
[flake8]
exclude=resources.py,vlc.py
2019-03-08 15:19:57 +00:00
max-line-length = 120
ignore = E402,W503,W504
2017-06-25 02:21:07 +00:00
2018-06-28 15:37:37 +00:00
[pycodestyle]
exclude = resources.py,vlc.py
max-line-length = 120
2018-07-02 20:38:47 +00:00
# Ignoring:
# E402...
# W503 line break before binary operator
# W504 line break after binary operator
2018-10-27 04:02:57 +00:00
ignore = E402,W503,W504
# Coverage configuration
[paths]
source =
./
/builds/openlp/openlp/
/Users/raoul/Library/Application Support/gitlab-runner/builds/*/*/openlp/openlp/