1.11.2015

pep8: Extending Max Line Length

pep8: 行あたりの最大文字数の拡張

 

pep8 を流した時、E501がうるさい。

$ pep8 src tests
tests/test_xxx.py:30:80: E501 line too long (112 > 79 characters)
...

--max-line-length オプションを使えばスッキリ。

$ pep8 --max-line-length 120 src tests

~/.config/pep8 ファイルにあらかじめ書いておけば、オプション指定を省略できるので便利。

[pep8]
max-line-length = 120

 

 

References

0 件のコメント:

コメントを投稿