mirror of
https://gitlab.com/openlp/openlp.git
synced 2024-12-25 11:14:07 +00:00
40 lines
823 B
INI
40 lines
823 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
|
|
|
|
[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
|
|
|
|
# Coverage configuration
|
|
[paths]
|
|
source =
|
|
./
|
|
/builds/openlp/openlp/
|
|
/Users/raoul/Library/Application Support/gitlab-runner/builds/*/*/openlp/openlp/
|
|
|
|
[tool:pytest]
|
|
qt_api=pyqt5
|
|
|
|
[mypy]
|
|
# Ignore for now, we'll come back to this later
|
|
ignore_errors = true
|