Auto merge of #11073 - autrilla:tox, r=Ms2ger

Added tox.ini

The default maximum line length Python linters use is 79, so a bunch of editor plugins complain about line lengths, unless you have a tox.ini telling the linter to ignore line lengths (E501) explicitly.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11073)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-05-09 01:37:09 -07:00
commit c3323f3c70

3
python/tox.ini Normal file
View file

@ -0,0 +1,3 @@
[flake8]
filename = *.py
max-line-length = 120