Skip to content
Snippets Groups Projects
Commit 46daf5ae authored by Lukas Juhrich's avatar Lukas Juhrich Committed by Dan Michael O. Heggø
Browse files

Include max-line-length settings for flake8/pep8

I did this kind of on personal interest, since my emacs (using flake8)
marks every violation (meaning: line >79 chars) red, which is pretty
annoying.

I personally think 90 is a realistic guideline.
parent 16d7c4b6
No related branches found
No related tags found
No related merge requests found
......@@ -6,3 +6,8 @@ deps=pytest
responses
mock
commands=py.test -v --pep8 mwclient tests
[flake8]
max-line-length=90
[pep8]
max-line-length=90
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment