ocf/.pep8speaks.yml
Kamil Lepek e52d34c1c8 Adapt all python code to PEP8 style standards
Signed-off-by: Kamil Lepek <kamil.lepek94@gmail.com>
2019-06-13 17:55:41 +02:00

14 lines
266 B
YAML

# File : .pep8speaks.yml
scanner:
diff_only: True
linter: pycodestyle
pycodestyle:
max-line-length: 100
ignore:
- E402 # module level import not at top of file
- W503 # line break after binary operator
no_blank_comment: True