~tomasgroth/openlp/portable-path

« back to all changes in this revision

Viewing changes to setup.cfg

  • Committer: Tomas Groth
  • Date: 2019-04-30 19:02:42 UTC
  • mfrom: (2829.2.32 openlp)
  • Revision ID: tomasgroth@yahoo.dk-20190430190242-6zwjk8724tyux70m
trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
[pep8]
6
6
exclude=resources.py,vlc.py
7
7
max-line-length = 120
8
 
ignore = E402
 
8
ignore = E402,E722,W503,W504
9
9
 
10
10
[flake8]
11
11
exclude=resources.py,vlc.py
12
12
max-line-length = 120
13
 
ignore = E402
 
13
ignore = E402,W503,W504,D
14
14
 
15
15
[pycodestyle]
16
16
exclude = resources.py,vlc.py
17
17
max-line-length = 120
18
18
# Ignoring:
19
19
# E402...
20
 
# E722 do not use bare 'except'
21
20
# W503 line break before binary operator
22
21
# W504 line break after binary operator
23
 
ignore = E402,E722,W503,W504
24
 
 
 
22
ignore = E402,W503,W504