提交 46696cfb authored 作者: Arnaud Bergeron's avatar Arnaud Bergeron

Add some of the default ignores back.

上级 c42a18c6
...@@ -17,9 +17,12 @@ __authors__ = ("Saizheng Zhang") ...@@ -17,9 +17,12 @@ __authors__ = ("Saizheng Zhang")
__copyright__ = "(c) 2015, Universite de Montreal" __copyright__ = "(c) 2015, Universite de Montreal"
__contact__ = "Saizheng Zhang <saizhenglisa..at..gmail.com>" __contact__ = "Saizheng Zhang <saizhenglisa..at..gmail.com>"
# This corresponds to "line too long" and it's too much of a pain with # We ignore:
# all of the C code # - "line too long"
ignore = ('E501',) # too complex to do with the C code
# - "closing bracket does not match indentation of opening bracket’s line"
# ignored by default by pep8
ignore = ('E501', 'E123', 'E133')
whitelist_flake8 = [ whitelist_flake8 = [
"compat/six.py", # This is bundled code that will be deleted, don't fix it "compat/six.py", # This is bundled code that will be deleted, don't fix it
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论