提交 72959d4e authored 作者: Frederic Bastien's avatar Frederic Bastien

Ignore new error that trigger too frequently. Idealy we should fix them.

上级 92b522c5
...@@ -34,9 +34,11 @@ __contact__ = "Saizheng Zhang <saizhenglisa..at..gmail.com>" ...@@ -34,9 +34,11 @@ __contact__ = "Saizheng Zhang <saizhenglisa..at..gmail.com>"
# - "'division' present" # - "'division' present"
# - "'absolute_import' present" # - "'absolute_import' present"
# - "'print_function' present" # - "'print_function' present"
# - "expected 2 blank lines after class or function definition"' (E305)
# - "ambiguous variable name" (E741)
# Redundant error code generated by flake8-future-import module # Redundant error code generated by flake8-future-import module
ignore = ('E501', 'E123', 'E133', 'FI12', 'FI14', 'FI15', 'FI16', 'FI17', ignore = ('E501', 'E123', 'E133', 'FI12', 'FI14', 'FI15', 'FI16', 'FI17',
'FI50', 'FI51', 'FI53') 'FI50', 'FI51', 'FI53', 'E305', 'E741')
whitelist_flake8 = [ whitelist_flake8 = [
"__init__.py", "__init__.py",
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论