告诉flake8忽略几个连续的行

时间:2018-04-30 11:39:54

标签: python-3.x flake8 pyflakes

我正在编写一个涉及预定义表格的游戏,如下所示:

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。有机会吗?

0 个答案:

没有答案