我正在编写一个涉及预定义表格的游戏,如下所示:
SCORES = [
[ 1, 123, 0, 456],
[ 78, 90, -1, 234],
[ 567, 8, 90, 12],
[ 3, 4, 567, 890]
]
令人惊讶的是,flake8
对此感到愤怒。我知道我可以为这些行添加# noqa
,但我有几个类似的表,它们实际上比4 * 4大得多。最好有像
# noqa-start
my_ugly_tables
# noqa-end
def regular_function_that_should_be_checked():
pass
我在Python 3.6上使用flake8 3.5.0。有机会吗?