~john+ubuntu-g/openlp/singingthefaith

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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